@extends('front.master') @section('content')

CONTAINER TRACKING

@foreach($containerReport as $container) @endforeach
S/N Container Number Gate Out Arrival Offload Empty Return
{{$n++}} {{$container->container_number}} @if($container->gate_out != null) {{\Carbon\Carbon::parse($container->gate_out)->format('d/m/Y')}} @else NA @endif @if($container->arrival != null) {{\Carbon\Carbon::parse($container->arrival)->format('d/m/Y')}} @else NA @endif @if($container->offload != null) {{\Carbon\Carbon::parse($container->offload)->format('d/m/Y')}} @else NA @endif @if($container->empty_return != null) {{\Carbon\Carbon::parse($container->empty_return)->format('d/m/Y')}} @else NA @endif



@endsection