@extends('admin.layouts.home.main') @section('styles') @endsection @section('main')

All Customers Shipments

@foreach ($shipments as $sh) @endforeach
Shipment ID Customer Name Shipment Type Destination Weight/Size Status
{{ $sh->shipment_id }} {{ $sh->customer->name ?? '' }} {{ $sh->shipment_type }} {{ $sh->destination }} {{ $sh->weight ?? '-' }} {{ ucfirst($sh->status) }}
{{ $shipments->links() }}
@csrf

Columns

@endsection @push('scripts') @endpush