Daftar Produk
{{-- ALERT ERROR --}}
@if($errors->any())
{{ $errors->first() }}
@endif
{{-- ALERT success--}}
@if(session('success'))
{{ session('success') }}
@endif
| No |
Nama Produk |
Kategori |
Harga |
Stok |
Kedaluwarsa |
Aksi |
@foreach($produk as $key => $p)
| {{$key+1}} |
{{$p->nama_produk}} |
{{$p->kategori}} |
Rp {{number_format($p->harga)}} |
{{$p->stok}} |
@if($p->expired_at)
{{ date('d/m/Y', strtotime($p->expired_at)) }}
@else
-
@endif
|
|
@endforeach