@extends('layouts.structure') @section('content')

Dispatch History

@if (session('error'))
{{ session('error') }}
@endif @foreach ($dispatches as $dispatch) @endforeach
Plan ID User Type Dispatch Option Gross Weight Location Remark Packaging Dispatched At Notes
{{ $dispatch->plan_id }} {{ $dispatch->user->name ?? 'N/A' }} {{ $dispatch->type }} {{ $dispatch->dispatch_option }} {{ $dispatch->gross_weight ?? 'N/A' }} {{ $dispatch->location ?? 'N/A' }} {{ $dispatch->remark ?? 'N/A' }} {{ $dispatch->packaging_type ? "{$dispatch->packaging_type} ({$dispatch->packaging_quantity})" : 'N/A' }} {{ $dispatch->dispatched_at->format('Y-m-d H:i:s') }} {{ $dispatch->notes ?? 'N/A' }}
@endsection