@extends('layouts.app') @section('content')
{{-- 🔔 Flash Message --}} @if(session('message'))
{{ session('message') }}
@endif {{-- 🔍 Filter Kategori & Pencarian --}}
{{-- Kategori --}} {{-- Pencarian --}} {{-- Favorit --}}
{{-- 🖼️ Katalog Grid --}}
@foreach ($catalogs as $catalog)
{{-- Link ke Detail Produk --}} {{ $catalog->name }}

{{ $catalog->name }}

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

Rp {{ number_format($catalog->price, 0, ',', '.') }}
{{-- Aksi: Favorit + Keranjang --}}
{{-- Toggle Favorit --}} @auth
@csrf @php $fav = $catalog->allFavorites->firstWhere('user_id', auth()->id()); $isFavorited = $fav && $fav->status; @endphp
@endauth {{-- Tambah ke Keranjang --}} @auth
@csrf
@endauth
@endforeach
{{-- Pagination --}}
{{ $catalogs->links() }}
@endsection