@extends('layouts.app') @section('title', 'Container Planning') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')

Container Planning

Plan and manage container loading

New Plan
@forelse($plans as $plan) @empty @endforelse
Plan # Order # Container Shipment Type Utilization Status Actions
{{ $plan->plan_number }} {{ $plan->order->order_number ?? 'N/A' }} {{ $plan->container_size ?? 'N/A' }} - {{ $plan->container_number ?? '' }} {{ ucfirst($plan->shipment_type ?? 'FCL') }} @php $util = $plan->utilization ?? 0; @endphp
{{ $util }}%
{{ ucfirst(str_replace('_', ' ', $plan->status)) }}

No container plans

@endsection @push('scripts') @endpush