Total Products

{{ $totalProducts }}

Raw Materials

{{ $totalRawMaterials }}

Today Sales

{{ $todaySales }}

Today Revenue

Rp {{ number_format($todayRevenue, 0, ',', '.') }}

Low Stock Items

@forelse($lowStockItems as $item) @empty @endforelse
# 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

Recent Transactions

@forelse($recentTransactions as $sale) @empty @endforelse
# 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