@extends('customs_layouts.admin') @section('content') @if(session()->has('error'))
{{ session()->get('error') }}
@endif @if(session()->has('info'))
{{ session()->get('info') }}
@endif
Port Seal List
@foreach($exports as $key => $export) @endforeach
S.no Date IEC Code Compnay Name {{ trans('cruds.export.fields.trailer_reg_number') }} {{ trans('cruds.export.fields.container_number') }} {{ trans('cruds.export.fields.destination_custom') }} {{ trans('cruds.export.fields.final_destination') }} {{ trans('cruds.export.fields.eseal') }} {{ trans('cruds.export.fields.shipping_bill') }} {{ trans('cruds.export.fields.sealing_date') }} {{ trans('cruds.export.fields.shipping_date') }} EWay Bill No CFS of Stuffing CFS Of Scan Date and Time Of Scan at CFS Result Of Scan at CFS Date and Time Of Scan at Port Result of Scan at Port
{{ $export->id }} {{ date('d-m-Y', strtotime($export->created_at)) }} {{ $export->exporter->import_export_code ?? '' }} {{ $export->exporter->exporter_company_name ?? '' }} {{ $export->trailer_reg_number ?? '' }} {{ $export->container_number ?? '' }} {{ $export->destination_custom->port_name ?? '' }} {{ $export->final_destination->port_name ?? '' }} {{ $export->eseal->sn ?? '' }} {{ $export->shipping_bill ?? '' }} {{ $sealing_date ?? '' }} {{ $shipping_dates ?? '' }} {{ $export->ewaybillno ?? '' }} {{ $cfs_code ?? '' }} {{ $cfs_of_scan ?? '' }} {{ $cfs_scan ?? '' }} {{ $cfs_status ?? '' }} {{ $export->eseal->used_time ?? '' }} {{ $export->eseal->used ?? '' }}
@endsection @section('scripts') @parent @endsection