Manage pharmacy stock and inventory
Upload Errors:
| Drug | Quantity | Reorder Level | Unit Price | Expiry Date | Batch Number | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $stock->drug->name }}
{{ $stock->drug->generic_name }}
|
{{ $stock->quantity }} | {{ $stock->reorder_level }} | @if($stock->unit_price) {{ config('app.currency_symbol', '$') }}{{ number_format($stock->unit_price, 2) }} @else - @endif | {{ $stock->expiry_date ? $stock->expiry_date->format('M d, Y') : '-' }} | {{ $stock->batch_number ?: '-' }} | @if($stock->isExpired()) Expired @elseif($stock->isExpiringSoon()) Expiring Soon @elseif($stock->isLowStock()) Low Stock @else In Stock @endif |
|
| No stock entries found. | |||||||
Upload a CSV file with the following columns (header row optional):
Example: Panadol,100,10,50.00,2025-12-31,BATCH001,Supplier ABC,2024-01-15,Initial stock
⚠️ Note: Drugs must exist in the drug catalog before uploading inventory.