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

SHIPMENTS REPORT


@if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif @if(Session::has('flash_message_danger'))
{!! session('flash_message_danger') !!}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@foreach($containerReport as $report) @endforeach
S/N Consignee File Number Bill Lading Form M Commodity 20FT 40FT Allocation Date OBL Received Assessment Duty Examination Customs Release Shipping Release Terminal Release Containers Gate Out Empty Return Remarks Consignee Reply Action
{{$n++}} {{$report->consignee_name}} {{$report->file_number}} {{$report->bill_of_lading}} {{$report->mf}} {{$report->commodity}} {{$report->twenty_ft}} {{$report->fourty_ft}} @if($report->date_allocated != null) {{\Carbon\Carbon::parse($report->date_allocated)->format('d/m/Y')}} @else NA @endif @if($report->obl_date != null) {{\Carbon\Carbon::parse($report->obl_date)->format('d/m/Y')}} @else NA @endif @if($report->assessment != null) {{\Carbon\Carbon::parse($report->assessment)->format('d/m/Y')}} @else NA @endif @if($report->duty != null) {{\Carbon\Carbon::parse($report->duty)->format('d/m/Y')}} @else NA @endif @if($report->examination != null) {{\Carbon\Carbon::parse($report->examination)->format('d/m/Y')}} @else NA @endif @if($report->customs_release != null) {{\Carbon\Carbon::parse($report->customs_release)->format('d/m/Y')}} @else NA @endif @if($report->shipping_release != null) {{\Carbon\Carbon::parse($report->shipping_release)->format('d/m/Y')}} @else NA @endif @if($report->terminal_release != null) {{\Carbon\Carbon::parse($report->terminal_release)->format('d/m/Y')}} @else NA @endif {{$totalContainer}} Container/s {{$report->remarks}} {{$report->consignee_reply}} Query this report
{{$report->container_number}} @if($report->gate_out != null) {{\Carbon\Carbon::parse($report->gate_out)->format('d/m/Y')}} @else NA @endif @if($report->empty_return != null) {{\Carbon\Carbon::parse($report->empty_return)->format('d/m/Y')}} @else NA @endif
@endsection