@extends('layouts.admin-simple') @section('title', 'Supplier Delivery Report') @section('breadcrumb')
Supplier deliveries and purchase tracking
| PO Number | Date | Supplier | Division | 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) }} | @if($item->division_name) {{ Str::limit($item->division_name, 15) }} @else - @endif | {{ $item->item_code }} | {{ Str::limit($item->item_description, 30) }} | No Category | @if($item->quantity_ordered) {{ number_format($item->quantity_ordered, 2) }} @else - @endif | {{ number_format($item->quantity, 2) }} | AED {{ number_format($item->unit_price, 2) }} | AED {{ number_format($item->total_price, 2) }} | {{ ucfirst($item->status) }} | @if($item->operation_id) visibility @elseif($item->transaction_id ?? null) visibility @else - @endif |
local_shipping
No Delivery Records FoundNo deliveries match your current filters. |
||||||||||||