@extends('layouts.structure') @section('content') Dispatch Records {{-- --}}
Dispatch Records
@if (session('success')) @endif @if (session('error')) @endif
@forelse ($dispatches as $index => $dispatch) @empty @endforelse
Sr No. Client Name Coil CRR No. Gross Weight (TON) Location Remark Dispatched As Actions
{{ $dispatches->firstItem() + $index }} {{ $dispatch->plan->client->client_name ?? 'N/A' }} {{ $dispatch->plan->coil->crr_no ?? 'N/A' }} {{ $dispatch->gross_weight ? number_format($dispatch->gross_weight, 3) : 'N/A' }} {{ $dispatch->location ?? 'N/A' }} {{ $dispatch->remark ?? 'N/A' }} {{ $dispatch->dispatch_option }} View
No dispatch records found.
{{ $dispatches->links() }}
@endsection