@extends('layouts.app') @section('title', 'Ship Details - Terminal Operating System') @section('content')
{{ ucfirst(str_replace('_', ' ', $ship->status)) }}
{{ $ship->capacity }} TEU
{{ $ship->current_load }} / {{ $ship->capacity }}
@if($ship->terminal) {{ $ship->terminal->name }} @else Not assigned @endif
{{ $ship->arrival_date?->format('M d, Y H:i') ?? 'Not set' }}
{{ $ship->departure_date?->format('M d, Y H:i') ?? 'Not set' }}
{{ $ship->capacity > 0 ? round(($ship->current_load / $ship->capacity) * 100, 2) : 0 }}%
| Container ID | Type | Size | Status | Destination | Weight |
|---|---|---|---|---|---|
| {{ $container->container_id }} | {{ $container->type }} | {{ $container->size }} | {{ ucfirst($container->status) }} | {{ $container->destination ?? 'N/A' }} | {{ $container->weight }} kg |
| No containers assigned | |||||