{{-- Filter kategori --}}
{{-- Daftar Katalog --}}
@forelse ($catalogs as $catalog) {{ $catalog->name }}

{{ $catalog->name }}

{{ Str::limit($catalog->description, 80) }}

Rp {{ number_format($catalog->price, 0, ',', '.') }} {{-- Tombol Favorit (Switch) --}} @auth @php $fav = $catalog->allFavorites->where('user_id', auth()->id())->first(); @endphp @endauth
@empty
Tidak ada katalog ditemukan.
@endforelse
{{-- Pagination --}}
{{ $catalogs->links() }}