{{ $inventory->deviceModel->name ?? 'N/A' }}
{{ $inventory->deviceModel->manufacturer ?? 'N/A' }}
{{ $inventory->device_serial_number }}
{{ $inventory->imei_number ?? 'N/A' }}
{{ $inventory->sim_number ?? 'N/A' }}
{{ ucfirst(str_replace('_', ' ', $inventory->status)) }}
{{ $inventory->purchase_date ? $inventory->purchase_date->format('d M, Y') : 'N/A' }}
Rs. {{ number_format($inventory->purchase_price, 2) }}
{{ $inventory->supplier ?? 'N/A' }}
{{ $inventory->created_at->format('d M, Y h:i A') }}
{{ $inventory->notes }}
| Sale # | Customer | Date | Amount | Action |
|---|---|---|---|---|
| #{{ $sale->id }} | {{ $sale->customer->name ?? 'N/A' }} | {{ $sale->sale_date->format('d M, Y') }} | Rs. {{ number_format($sale->total_amount, 2) }} | View |
Added to Inventory
{{ $inventory->created_at->format('d M, Y h:i A') }}
Last Updated
{{ $inventory->updated_at->format('d M, Y h:i A') }}