@extends('layouts.app') @section('title', 'Manajemen Produk') @section('content')
| Produk | Kategori | Harga | Stok | Status | Aksi |
|---|---|---|---|---|---|
|
@if($product->image)
{{ $product->name }}
{{ $product->sku }}
@if($product->barcode)
{{ $product->barcode }}
@endif
|
{{ $product->category->name }} | Rp {{ number_format($product->price, 0, ',', '.') }} |
@if($product->track_stock)
{{ $product->stock }} {{ $product->unit }}
@if($product->stock <= $product->min_stock)
Stok Rendah!
@endif
@else
Tidak Dilacak
@endif
|
{{ $product->is_active ? 'Aktif' : 'Nonaktif' }} |
Rp {{ number_format($product->price, 0, ',', '.') }}
@if(request()->hasAny(['search', 'category'])) Tidak ada produk yang sesuai dengan filter yang dipilih. @else Mulai dengan menambahkan produk pertama Anda. @endif