Cargo & Packing Details
Cargo Information
| Movement Type | Volume |
@foreach($deal_data->containers as $pc)
| {{ $pc->name }} | {{ $pc->pivot->unit }} |
@endforeach
Packing Dimensions
| Type | L×W×H | Qty | Unit |
@foreach($deal_data->packageDimation as $pd)
| {{ $pd->package }} |
{{ $pd->length }}×{{ $pd->width }}×{{ $pd->height }} |
{{ $pd->qty }} |
{{ $pd->measurement_unit }} |
@endforeach
Address Information
@if (Auth::user()->role_id != 4)
Pickup Address
{{ $deal_data->pickup_address1 }}
@if($deal_data->pickup_address2)
{{ $deal_data->pickup_address2 }}
@endif
{{ $deal_data->pickup_city }}@if($deal_data->pickup_state), {{ $deal_data->pickup_state }}@endif
@if($deal_data->pickup_zip)
{{ $deal_data->pickup_zip }}
@endif
Delivery Address
{{ $deal_data->delivery_address1 }}
@if($deal_data->delivery_address2)
{{ $deal_data->delivery_address2 }}
@endif
{{ $deal_data->delivery_city }}@if($deal_data->delivery_state), {{ $deal_data->delivery_state }}@endif
@if($deal_data->delivery_zip)
{{ $deal_data->delivery_zip }}
@endif
@else
Address information is not available for your role.
@endif
Document Attachments
@if($deal_data->document_type)
@php
$extension = strtolower(pathinfo($deal_data->document_type, PATHINFO_EXTENSION));
$imageExtensions = ['jpg', 'jpeg', 'png', 'gif', 'webp', 'svg'];
$documentPath = asset('/storage/'.$deal_data->document_type);
@endphp
@if($extension == 'pdf')
@elseif(in_array($extension, $imageExtensions))
@else
{{ basename($deal_data->document_type) }}
{{ strtoupper($extension) }} Document
@endif
View Document
@else
No Additional Document
No document has been uploaded for this quotation
@endif
Additional Information
HS Codes
| HS CODE |
@foreach($deal_data->hscodes as $hs)
| {{ $hs->hs_code }} |
@endforeach