@extends('layouts.app') @section('title', 'Container Plan #'.optional($plan)->plan_number) @section('breadcrumbs') @endsection @section('content')
Container: {{ $plan->container_number ?? 'N/A' }} | {{ strtoupper($plan->container_size ?? '') }}
| # | Product | Description | Qty | Weight (MT) | Volume (CBM) | Packages |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->product->name ?? 'N/A' }} | {{ $item->description }} | {{ number_format($item->quantity, 2) }} | {{ number_format($item->weight, 3) }} | {{ number_format($item->volume, 3) }} | {{ $item->packages ?? 0 }} |
| No items loaded | ||||||
| Total | {{ $plan->items->sum('quantity') }} | {{ number_format($plan->items->sum('weight'), 3) }} | {{ number_format($plan->items->sum('volume'), 3) }} | {{ $plan->items->sum('packages') }} | ||
| Order | {{ $plan->order->order_number ?? 'N/A' }} |
| Status | {{ ucfirst($plan->status) }} |