@extends('layouts.app') @section('title', 'Consolidation Management') @section('breadcrumbs') @endsection @section('content')

Consolidation Management

Manage groupage and cargo consolidation

New Consolidation
@php $stats = [['label'=>'Active Groups','count'=>$stats['active']??0,'icon'=>'bi-layers','color'=>'primary'],['label'=>'Pending Merge','count'=>$stats['pending_merge']??0,'icon'=>'bi-merge','color'=>'info'],['label'=>'Completed','count'=>$stats['completed']??0,'icon'=>'bi-check-circle-fill','color'=>'success'],['label'=>'Total Shipments','count'=>$stats['total_shipments']??0,'icon':'bi-box-seam','color'=>'warning']]; @endphp @foreach($stats as $stat)
@endforeach
Consolidation Groups
@forelse($consolidations ?? [] as $c) @empty @endforelse
Group #DescriptionNo. of ShipmentsTotal WeightTotal VolumeContainerDestinationETDStatusActions
{{ $c->group_number ?? 'N/A' }} {{ Str::limit($c->description ?? '', 30) }} {{ $c->shipment_count ?? 0 }} {{ number_format($c->total_weight ?? 0, 2) }} KGS {{ number_format($c->total_volume ?? 0, 3) }} CBM {{ $c->container_number ?? 'TBD' }} {{ $c->destination_port->code ?? 'N/A' }} {{ optional($c->etd)->format('d M Y') ?? 'TBD' }}

No consolidations found

@endsection @push('scripts') @endpush