{{ __('Vessels Management') }}

@if(session('success'))
{{ session('success') }}
@endif @if($vessels->count() > 0)
@foreach($vessels as $vessel) @endforeach
Vessel Name Records Count Created Date Actions
{{ $vessel->name }}
{{ $vessel->records_count }} records {{ $vessel->created_at ? $vessel->created_at->format('d/m/Y') : 'N/A' }}
View Edit
@csrf @method('DELETE')
@else

No vessels found

Get started by adding your first vessel.

@endif