@extends('layouts.master') @section('content')
| Code | Item | Batch | Expiry | Quantity | Unit Cost | Line Total |
|---|---|---|---|---|---|---|
| {{ $item->item_code }} | {{ $item->item_name }} | {{ $item->batch_no }} | @if($item->expiry_date) {{ \Carbon\Carbon::parse($item->expiry_date)->format('d-m-Y') }} @else - @endif | {{ number_format($item->quantity_issued) }} | UGX {{ number_format($item->unit_cost, 2) }} | UGX {{ number_format($item->line_total, 2) }} |
| No items found. | ||||||