@include('layouts.header') @include('layouts.navigation1') @if (Session::has('msg')) @endif

DOMESTIC REEFER PLUGGING APPLICATION

@php date_default_timezone_set("Pacific/Fiji"); $data = null; $total_plugin_count = 0; $total_vessel_count = 0; @endphp @if(Session::has('draft_data')) @php $data = Session::get('draft_data'); @endphp @foreach($data as $index => $item) @if($item->plugging_or_vessel === 'plugging') @php $total_plugin_count += 1; @endphp @else @php $total_vessel_count += 1; @endphp @endif @endforeach @endif
@csrf

VESSEL DETAILS

@if($total_vessel_count > 0) @foreach($data as $index => $item) @if($item->plugging_or_vessel === 'vessel') @if($index !== 0) @endif @endif @endforeach @else @endif
VESSEL NAME VOYAGE NUMBER CONTAINER STATUS ORDER NUMBER(LPO) PORT ACTION

PLUGGING DETAILS

@if($total_plugin_count > 0) @foreach($data as $index => $item) @if($item->plugging_or_vessel === 'plugging') @if($index !== 0) @endif @endif @endforeach @else @endif
CONTAINER NUMBER SIZE SET TEMPERATURE PLUGGING DATE REMARKS ACTION
PAYMENT REFERENCE IMAGE:   @if($data AND $data[0]->attachment) @endif

USER NAME:

{{ $userData->name }}

COMPANY NAME:

{{ $userData->company }}

DATE:

{{ date("Y/m/d") }}

TIME:

{{ date("h:i a") }}

Please ensure that this form is submitted during Customer Service working hours: between 08:00 and 17:00 hours on weekdays and between 08:00 and 13:00 on Saturdays. FPTL accepts no responsibility if the forms are submitted outside working hours and any transactions not being attended to.
Cancel
@include('layouts.footer')