@extends('layouts.app') @section('content')
{{-- 🔔 Flash Message --}} @if (session('message'))
{{ session('message') }}
@endif {{-- 🖼️ Detail Produk --}}
{{-- Gambar --}}
{{ $catalog->name }}
{{-- Info & Aksi --}}

{{ $catalog->name }}

📁 {{ $catalog->category->name ?? 'Tanpa Kategori' }}

Rp {{ number_format($catalog->price, 0, ',', '.') }}

{!! $catalog->description !!}
{{-- Aksi --}}
{{-- ❤️ Toggle Favorit --}} @auth @php $fav = $catalog->favorites->firstWhere('user_id', auth()->id()); $isFavorited = $fav && $fav->status; @endphp @else @endauth {{-- 🛒 Tambah ke Keranjang --}} @auth
@csrf
@else Tambah ke Keranjang @endauth
{{-- 🧩 Produk Terkait --}}

Produk Terkait

@forelse ($relatedCatalogs as $item) @php $fav = $item->favorites->firstWhere('user_id', auth()->id()); $isFavorited = $fav && $fav->status; @endphp @empty

Tidak ada produk terkait.

@endforelse
{{-- ❤️ AJAX Script --}} @auth @endauth @endsection