@extends('layouts.admin-simple') @section('title', 'Supplier Delivery Report') @section('breadcrumb') @endsection @section('page-title')

Supplier Delivery Report

Supplier deliveries and purchase tracking

@endsection @section('content')
filter_list Filters
local_shipping Supplier Delivery Report ({{ $incomingItems->total() }} total deliveries)
Loading...
Loading delivery data...
@forelse($incomingItems as $item) @empty @endforelse
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 Found

No deliveries match your current filters.

@if($incomingItems->hasPages()) @endif
@endsection @push('styles') @endpush @push('scripts') @endpush