@extends('layouts.app') @section('title','Produk') @section('page-title','Katalog produk') @section('content')
INVENTORI

Produk dan gambar

Gambar disimpan aman di storage; path file tercatat di database produk.

Tambah produk
@forelse($products as $product)@empty@endforelse
Produk Kategori Harga Stok Path databaseAksi
@if($product->image_url){{ $product->name }}@else@endif{{ $product->name }}
{{ $product->category->name ?? '-' }}Rp {{ number_format($product->price,0,',','.') }}{{ $product->stock }} unit{{ $product->image ?? '—' }}
@csrf @method('DELETE')
Belum ada produk. Tambahkan produk pertama Anda.
{{ $products->links() }}
@endsection