@extends('layouts.app') @section('title', 'Customer Details') @php $breadcrumbs = [['label' => 'Masters', 'url' => route('masters.customers.index')], ['label' => 'Customers', 'url' => route('masters.customers.index')], ['label' => $customer->name ?? '']]; @endphp @section('content')
Code: {{ $customer->code ?? '' }} | {{ ucfirst($customer->type ?? '') }}
| Shipment # | Date | Destination | Status |
|---|---|---|---|
| {{ $shipment->shipment_number }} | {{ $shipment->created_at->format('d M Y') }} | {{ $shipment->destination_port->name ?? '' }} | |
| No shipments found | |||