{{ $totalProducts }}
{{ $totalRawMaterials }}
{{ $todaySales }}
Rp {{ number_format($todayRevenue, 0, ',', '.') }}
| # | Item Name | Type | Current Stock | Min Stock | Unit |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->name }} | {{ $item->type === 'PRODUCT' ? 'Product' : 'Raw Material' }} | {{ number_format($item->stock, 2, ',', '.') }} | {{ number_format($item->minimum_stock, 2, ',', '.') }} | {{ $item->unit }} |
| All items are in stock | |||||
| # | Invoice | Date | Total | Status |
|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $sale->invoice_no }} | {{ $sale->created_at->format('d M Y H:i') }} | Rp {{ number_format($sale->total_price, 0, ',', '.') }} |
{{ $sale->status }}
|
| No transactions yet | ||||