{{-- Flash Message --}} @if (session()->has('message'))
{{ session('message') }}
@endif {{-- Header --}}

Manajemen Inventaris

Kelola produk, stok, dan harga.

{{-- Stats Cards --}}

Total Produk

{{ $stats['total'] }}

Stok Menipis

{{ $stats['low_stock'] }}

Stok Habis

{{ $stats['out_of_stock'] }}

Nilai Stok

Rp {{ number_format($stats['total_value'], 0, ',', '.') }}

{{-- Filters --}}
{{-- Products Table --}}
@forelse($products as $product) @empty @endforelse
Nama Produk Kategori Harga Level Stok Status Aksi
{{ $product->category?->icon ?? '📦' }}
{{ $product->name }}

SKU: {{ $product->sku }}

{{ $product->category?->name ?? '-' }} Rp {{ number_format($product->sellPrice, 0, ',', '.') }}
{{ $product->stock }} / {{ $product->threshold }}
@if($product->stock == 0) Habis @elseif($product->stock <= $product->threshold) Menipis @else Tersedia @endif

Tidak ada produk ditemukan

Coba ubah filter atau tambah produk baru

{{-- Pagination --}} @if($products->hasPages())
{{ $products->links() }}
@endif