{{ $booking_type }}
|
Country
|
City/Location
|
Pick-up required?
|
Postcode
|
|
Origin
|
|
{{ $origin_country }} |
{{ $origin_city }} |
{{ $origin_pickup == 1 ? 'Yes' : 'No' }} |
{{ $origin_postcode }} |
|
Country
|
City/Location
|
Deliver to consignee
|
Postcode
|
|
Destination
|
|
{{ $destination_country }} |
{{ $destination_city }} |
{{ $destination_pickup == 1 ? 'Yes' : 'No' }} |
{{ $destination_postcode }} |
Cargo details
Cargo Type: {{ $cargoType }}
Incoterms: {{ $incoterms }} - {{ $incoterms_type }}
Cargo readiness: {{ $pickupDate }}
{{ $insurance }}
Measurement: {{ $measurement }}/{{ $measurement_length }}
@if ($booking_type == 'SeafreightLCL')
@if ($totalDimensions)
Total volume: $totalVolume {{ $measurement == 'kg' ? 'm3' : 'ft3' }}
Total weight: {{ $totalWeight }} {{ $measurement }}
@else
|
Quantity
|
Length
|
Width
|
Height
|
@if ($weightMode == 'one')
Weight
|
@endif
@if ($weightMode == 'one')
|
Package details
|
@else
Package details
|
@endif
@foreach($weights as $weight)
|
{{ $weight['quantity'] }} |
{{ $weight['length'] }} {{ $measurement_length }} |
{{ $weight['width'] }} {{ $measurement_length }} |
{{ $weight['height'] }} {{ $measurement_length }} |
@if ($weightMode == 'one')
{{ $weight['weight'] }} {{ $measurement }} |
@endif
@endforeach
@if ($weightMode == 'two')
Total weight: {{ $totalWeight }} {{ $measurement }}
@endif
|
Quantity
|
Volume
|
Weight
|
|
Current total
|
|
{{ $currentTotalQuantity }} |
{{ $currentTotalVolume }} @if($measurement_length == 'cm') m3 @else ft3 @endif |
{{ $currentTotalWeight }} {{ $measurement }} |
@endif
@elseif($booking_type == 'RoadTransport')
|
Quantity
|
Length
|
Width
|
Height
|
@if ($weightMode == 'one')
Weight
|
@endif
Type
|
@if ($weightMode == 'one')
|
Package details
|
@else
Package details
|
@endif
@foreach($weights as $weight)
|
{{ $weight['quantity'] }} |
{{ $weight['length'] }} {{ $measurement_length }} |
{{ $weight['width'] }} {{ $measurement_length }} |
{{ $weight['height'] }} {{ $measurement_length }} |
@if ($weightMode == 'one')
{{ $weight['weight'] }} {{ $measurement }} |
@endif
{{ $weight['typeOfPackage'] }} |
@endforeach
@if ($weightMode == 'two')
Total weight: {{ $totalWeight }} {{ $measurement }}
@endif
|
Quantity
|
Volume
|
Weight
|
|
Current total
|
|
{{ $currentTotalQuantity }} |
{{ $currentTotalVolume }} @if($measurement_length == 'cm') m3 @else ft3 @endif |
{{ $currentTotalWeight }} {{ $measurement }} |
@if ($instructions)
Instructions
{{ $instructions }}
@endif
@if ($fullTruckLoad)
Full Truck Load: @if($fullTruckLoad) {{ 'Yes' }} @else {{ 'No' }} @endif
@endif
@elseif ($booking_type == 'SeafreightFCL')
|
Container
|
Count
|
Weight
|
|
Containers
|
@foreach($containers as $container)
|
{{ $container['selected'] }} |
{{ $container['count'] }} |
{{ $container['weight'] }} |
@endforeach
Selected containers: {{ count($containers) }}
Total weight: {{ $totalWeight }} {{ $measurement }}
@else
|
Quantity
|
Length
|
Width
|
Height
|
@if ($weightMode == 'one')
Weight
|
@endif
@if ($weightMode == 'one')
|
Packages
|
@else
Packages
|
@endif
@foreach($items as $item)
|
{{ $item['quantity'] }} |
{{ $item['length'] }} {{ $measurement_length }} |
{{ $item['width'] }} {{ $measurement_length }} |
{{ $item['height'] }} {{ $measurement_length }} |
@if ($weightMode == 'one')
{{ $item['weight'] }} {{ $measurement }} |
@endif
@endforeach
@if ($weightMode == 'two')
Total weight: {{ $totalWeight }} {{ $measurement }}
@endif
|
Quantity
|
Volume
|
Weight
|
Chargeable Weight
|
|
Current total
|
|
{{ $totalQuantity }} |
{{ $totalVolume }} @if($measurement_length == 'cm') m3 @else ft3 @endif |
{{ $totalWeight }} {{ $measurement }} |
{{ $chargeableWeight }} {{ $measurement }} |
@endif
@if ($origin_pickup)
Cargo pickup
|
Sender name
|
Loading address
|
ZIP code
|
Contact person at the loading station
|
Phone at the loading station
|
Cargo readiness
|
|
Cargo pickup
|
|
{{ $pickupSenderName }} |
{{ $pickupAddress }} |
{{ $pickupPostCode }} |
{{ $pickupContactPerson }} |
{{ $pickupPhone }} |
{{ $pickupDate }} |
@endif
@if ($contractFreight)
Freight details
Agreed freight: {{ $contractFreight }}
Payer of the freight: {{ $payerOfTheFreight }}
@endif