@extends('admin.layouts.app') @section('page-title', 'Containers') @section('content')
Container List
Add Container
@if(session('success'))
{{ session('success') }}
@endif @if($containers->isEmpty())

No containers found.

@else @foreach($containers as $container) @endforeach
# Customer Name Container Number Date Excel File
{{ $loop->iteration }} {{ $container->customer_name }} {{ $container->container_number }} {{ $container->container_date?->format('d-m-Y') }} @if($container->excel_file) Download @else - @endif
@endif
@endsection