@extends('layouts.admin-simple') @section('title', 'Supplier Delivery Report') @section('breadcrumb')
Supplier deliveries and purchase tracking
| PO Number | Date | Supplier | Item Code | Description | Category | Ordered | Delivered | Unit Price | Total Price | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->lpo_number ?? '-' }} | {{ $item->operation_date ? \Carbon\Carbon::parse($item->operation_date)->format('d M Y') : '-' }} | {{ Str::limit($item->supplier_name ?? '-', 20) }} | {{ $item->item_code }} | {{ Str::limit($item->item_description, 30) }} | No Category | - | {{ number_format($item->quantity, 2) }} | AED {{ number_format($item->unit_price, 2) }} | AED {{ number_format($item->total_price, 2) }} | {{ ucfirst($item->status) }} | visibility |
local_shipping
No Delivery Records FoundNo deliveries match your current filters. |
|||||||||||