Master Data Produk

Kelola Produk

{{-- Alert Success --}} @if(session('success'))
{{ session('success') }}
@endif
{{-- Header & Tombol Tambah --}}

Daftar Produk

Kelola inventaris barang, harga modal (HPP), harga jual, dan stok produk toko.

Tambah Produk
{{-- Tabel Produk --}}
@forelse ($products as $product) @empty @endforelse
No Gambar Nama Produk Kategori Harga Jual Stok Aksi
{{ $loop->iteration }} @if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }} {{ $product->category->name ?? 'Uncategorized' }} Rp {{ number_format($product->price, 0, ',', '.') }} {{ $product->stock }} {{-- Tombol Detail --}} Detail {{-- Tombol Edit --}} Edit {{-- Tombol Hapus --}}
@csrf @method('DELETE')
Belum ada data produk yang tersedia.
{{-- Pagination --}} @if(method_exists($products, 'links'))
{{ $products->links('vendor.pagination.tailwind') }}
@endif