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

Equipment Request Form

Containers For Inspection



SHIPPING CONTRACT INFODETAILS
CONTRACT NUMBER{{strtoupper($equipform->contract_no)}}
PORT{{strtoupper($equipform->loading_port)}}
TONNAGE TO BE SHIPPED{{strtoupper($equipform->quantity)}}
NAME OF VESSEL{{strtoupper($equipform->vessel)}}
DATE OF SHIPMENT{{strtoupper($equipform->eta)}}
DESTINATION{{strtoupper($equipform->destination)}}
SIZE OF CONTAINER{{strtoupper($equipform->container_size)}}

PASSED CONTAINERS

@foreach ($containers as $container) @endforeach
No. Container Number Container Size Container Type Location Other Features Inspection Status
{{$loop->index + 1}} {{strtoupper($container->number)}} {{strtoupper($container->size)}} {{strtoupper($container->type)}} {{strtoupper($container->location)}} {{strtoupper($container->other_features)}} @if ($container->status == NULL) PENDING @else {{strtoupper($container->status)}} @endif
No. Container Number Container Size Container Type Location Other Features Inspection Status

FAILED CONTAINERS

@foreach ($faileds as $failed) @endforeach
No. Container Number Container Size Container Type Location Other Features Inspection Status
{{$loop->index + 1}} {{strtoupper($failed->number)}} {{strtoupper($failed->size)}} {{strtoupper($failed->type)}} {{strtoupper($failed->location)}} {{strtoupper($failed->other_features)}} @if ($failed->status == NULL) PENDING @else {{strtoupper($failed->status)}} @endif
No. Container Number Container Size Container Type Location Other Features Inspection Status
@endsection @section('more-scripts') @endsection