@extends('layouts.backend') @section('content')

View Load #{{ $job->reference }}

Customer: {{ $job->getCustomer->legal_name }}

Job Status: {{ $job->getStatus->status }}

Type of Entry

  • {{ $job->getTypeOfEntry->type }}

GMR

    @if ($job->gmr == '1')
  • Yes
  • @endif @if ($job->gmr == '0')
  • No
  • @endif

LRN

getTypeOfEntry->type=='Import') disabled="disabled" @endif>

Reference

@if ($job->port_uk > 0 && $job->port_eu > 0) @if ($job->type_of_entry == '1' || $job->type_of_entry == '3' || $job->type_of_entry == '4')

UK Port

EU Port

@endif @if ($job->type_of_entry == '2')

EU Port

  • {{ $job->getEuPort->port }}

UK Port

  • {{ $job->getUkPort->port }}
@endif

Truck Number

{{ $job->truck_number }}

Trailer Number

{{ $job->trailer_number }}
@endif

Documents uploaded by the customer

@foreach ($uploads as $file)
@if ($job->status == 1 || $job->status == 7)
@endif
{{ $file->getDocument->originalName }}
@endforeach

Please Upload the documents here. Only PDF, JPG, JPEG, EXCEL or WORD files are allowed.
Any other types will be ignored by the system.

Upload documents
@foreach ($downloads as $file)
@if ($job->status==2)
@endif
{{ $file->getDocument->originalName }}
@endforeach
@if ($job->status == 2) @endif
@endsection