@include('inventory::reports.partials.styles')
Track batch expiry dates and prevent inventory losses
| # | Lot / Batch | Product | Warehouse | Qty | Value | Expiry Date | Days Left | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $lot->lot_no }}{{ $lot->batch_no ? ' / '.$lot->batch_no : '' }} |
{{ $lot->product_name }}
|
{{ $lot->warehouse }} | {{ number_format($lot->qty, 2) }} {{ $lot->unit_name }} | ₹{{ number_format($lot->value, 0) }} | {{ $lot->expiry_date ?? 'N/A' }} | @if($lot->expiry_status == 'expired') {{ abs($lot->days_to_expiry) }}d ago @elseif($lot->days_to_expiry) {{ $lot->days_to_expiry }}d @else - @endif | {{ ucfirst($lot->expiry_status) }} |
No batch-managed products found