@extends('layouts.app') @section('title', 'Detail Produk') @section('content')
Nama: {{ $product->name }}
Kategori: {{ $product->category->name }}
Stok: {{ $product->stock }}
Kondisi: {{ $product->condition }}
Deskripsi: {{ $product->description ?? '-' }}
Edit Kembali @endsection