@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 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 Found

No deliveries match your current filters.

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