@extends('admin.layout.app') @section('more-head') @endsection @section('main-content') shipment shipment @include('includes.messages') {{csrf_field()}} {{method_field('PUT')}} Select Contract: @foreach ($contracts as $contract) id == $shipment->contract_id) selected @endif >{{$contract->number}} @endforeach Invoice date Insurance Number Tonnage Shipped Total tonnage on Contract: {{$shipment->contract->tonnage}} Total tonnage Shipped: {{$tonnage_shipped}} Tonnage remaining: Freight Exchange Rate Select vessel: @foreach ($vessels as $vessel) id == $shipment->vessel_id) selected @endif>{{$vessel->name}} @endforeach Select Shipping Mode: @foreach ($shippingmodes as $shippingmode) id == $shipment->shippingmode_id) selected @endif>{{$shippingmode->name}} @endforeach Bill of Laden number Bill of Laden Date Select Loading Port: @foreach ($loadingports as $loadingport) id == $shipment->loadingport_id) selected @endif>{{$loadingport->name}} @endforeach Select Consignor @foreach ($consignors as $consignor) id == $shipment->consignor_id) selected @endif>{{$consignor->name}} @endforeach Remarks {{$shipment->remarks}} Additional Remarks {{$shipment->additional_remarks}} Applicable Warehouse Charges: warehouse_charges == 'no') selected @endif>No warehouse_charges == 'yes') selected @endif>Yes @endsection @section('more-scripts') @endsection