@extends('layouts.app') @section('title', 'Container Tracking') @section('breadcrumbs') @endsection @section('content')

Container Movements

Track container movements and location history

Container List
@forelse($containers ?? [] as $c) @empty @endforelse
Container #TypeSizeCurrent LocationStatusActions
{{ $c->container_number ?? 'N/A' }} {{ $c->type ?? 'N/A' }} {{ $c->size ?? 'N/A' }} {{ $c->current_location ?? 'N/A' }}
No containers found
Movement Timeline
@forelse($movements ?? [] as $m)

{{ $m->location ?? 'N/A' }}

{{ $m->event ?? '' }}

{{ optional($m->timestamp)->format('d M Y H:i') ?? '' }}
@empty
Select a container to view timeline
@endforelse
@endsection @push('scripts') @endpush