@extends('admin.layout.app') @section('more-head') @endsection @section('main-content')

shipment

shipment

@foreach ($shipments as $shipment) @endforeach
No. Contract Number Insurance Number Invoice Date Tonnage Shipped Insurance Number Bill of Laden
Rate
Vessel Mode of Shipment Bill of Laden Number Bill of Laden Date Loading Port Consignor Prepared By Supervised By Draft Invoice
{{$loop->index + 1}}. {{$shipment->contract['number']}} {{$shipment->insurance_number}} {{date("d - M - Y", strtotime($shipment->invoice_date))}} {{$shipment->tonnage_shipped}} {{$shipment->insurance_number}} {{$shipment->bl_rate}} {{$shipment->vessel['name']}} {{$shipment->shippingmode['name']}} {{$shipment->bill_of_laden_number}} {{date("d - M - Y", strtotime($shipment->bill_of_laden_date))}} {{$shipment->loadinGport['name']}} {{$shipment->consignor['name']}} @foreach ($users as $user) @if ($user->id == $shipment->user_id) {{$user->username}} @endif @endforeach @foreach ($users as $user) @if ($user->id == $shipment->supervisor_id) {{$user->username}} @endif @endforeach View Invoice
No. Contract Number Insurance Number Invoice Date Tonnage Shipped Insurance Number Bill of Laden
Rate
Vessel Mode of Shipment Bill of Laden Number Bill of Laden Date Loading Port Consignor Prepared By Supervised By Draft Invoice
@endsection @section('more-scripts') @endsection