@include('frontend.layouts.navbar') {{-- Page Hero --}}
Quotation Request
Copy
Inquiry
Review and update the pre-filled shipment details across three steps to resubmit.
{{-- Form Section --}}
{{-- Unified form card: progress bar + all panels --}}
{{-- Progress Bar --}}
1
Basic Data
2
Master Data
3
Transactional
@csrf {{-- Step 1: Basic Data --}}
⚠ Please fill in all required fields highlighted below.
Basic Data
Shipment Name
*
Default Agent List Selection
*
Please Select Agent
@foreach($forwarders as $forworder )
id, $provider)) ? 'selected' : '' }}>{{ $forworder->name }}
@endforeach
Continue
{{-- Step 2: Master Data --}}
⚠ Please fill in all required fields highlighted below.
Master Data
Shipment Type
*
Select Your Shipment Type
@foreach($shipmenttypes as $shipmenttype )
id == $quatation->shipment_type_id ? 'selected' : '' }}>{{ $shipmenttype->name }}
@endforeach
Shipment Mode
*
Select Your Shipment Mode
@foreach($shipmentmodes as $shipmentmode)
id == $quatation->shipment_mode_id ? 'selected' : '' }}>{{ $shipmentmode->name }}
@endforeach
Shipment Incoterm
*
Select Your Shipment Incoterm
@foreach($shipmentincoterms as $shipmentincoterm)
id == $quatation->shipment_incoterm_id ? 'selected' : '' }}>{{ $shipmentincoterm->name }}
@endforeach
Credit Period Terms
*
Select Your Credit Period
@foreach($creditperiods as $creditperiod)
id == $quatation->creditperiodtime_id ? 'selected' : '' }}>{{ $creditperiod->name }}
@endforeach
Currency
*
Select Your Currency Type
@foreach($exchangecurrencies as $exchangecurrencie)
id == $quatation->exchagerate_id ? 'selected' : '' }}>{{ $exchangecurrencie->name }}
@endforeach
Quotation Deadline
*
Date:
Time:
Main Remarks
{{ $quatation->remarks }}
Back
Continue
{{-- Step 3: Transactional Data --}}
⚠ Please fill in all required fields highlighted below.
Transactional Data
{{-- Cargo Table --}}
Cargo Table
Add Row
Container Type
Volume / Units
@foreach($quatation->containers as $key => $val)
@foreach ($containertypes as $type)
id == $val->pivot['container_id'] ? 'selected' : '' }}>{{ $type->name }}
@endforeach
✕
@endforeach
{{-- Package Dimensions --}}
Package Dimensions
Add Row
Type
Length
Width
Height
QTY
Unit
@foreach ($quatation->packageDimation as $key => $val)
Unit
measurement_unit == 'CM' ? 'selected' : '' }}>CM
measurement_unit == 'MM' ? 'selected' : '' }}>MM
measurement_unit == 'INCH' ? 'selected' : '' }}>Inch
measurement_unit == 'FT' ? 'selected' : '' }}>Ft
measurement_unit == 'METERS' ? 'selected' : '' }}>Meters
✕
@endforeach
{{-- POL --}}
POL
*
Select Your POL
@foreach($shipmentseaports as $shipmentseaport)
id == $quatation->shipport_id ? 'selected' : '' }}>{{ $shipmentseaport->port }}
@endforeach
{{-- POD --}}
POD
*
Select Your POD
@foreach($shipmentairports as $shipmentairport)
id == $quatation->shipairport_id ? 'selected' : '' }}>{{ $shipmentairport->city }}
@endforeach
{{-- HS Code --}}
HS Code
Add Row
HS Code
@foreach($quatation->hscodes as $k => $val)
✕
@endforeach
{{-- Opening Time / Packing Type --}}
Opening Time Required / Given at Origin
Standard
{{ $quatation->openningtime }}
Packing Type
*
Select Your Packing Type
@foreach($packingtypes as $packingtype)
id == $quatation->packingtype_id ? 'selected' : '' }}>{{ $packingtype->name }}
@endforeach
{{-- Cargo Weight / Stackable --}}
Cargo Weight in KGs
*
maximum 35000
Stackable
*
stackable == 'No' ? 'checked' : '' }}>
No
stackable == 'Yes' ? 'checked' : '' }}>
Yes
{{-- Document Type --}}
Document Type
doctype == 'Direct BL/AWBL' || $quatation->doctype == 'Direct BL') ? 'selected' : '' }}>Direct BL /AWBL
doctype == 'House BL/HAWB' || $quatation->doctype == 'House BL') ? 'selected' : '' }}>House BL /HAWB
{{-- Cargo Ready Date --}}
Cargo Ready Date
*
{{-- Delivery Options --}}
Required Delivery Options
*
Select Your Delivery Option
@foreach($deliveryoptions as $deliveryoption)
id == $quatation->deliveryoption_id ? 'selected' : '' }}>{{ $deliveryoption->name }}
@endforeach
{{-- Commodity Name --}}
Commodity Name
*
@error('commodity_name') {{ $message }} @enderror
{{-- Fumigation / Cargo Status --}}
Fumigation Required
*
fumigation == 'No' ? 'checked' : '' }}>
No
fumigation == 'Yes' ? 'checked' : '' }}>
Yes
Cargo Status
*
cargo_status == 'NonDG' ? 'checked' : '' }}>
Non DG
cargo_status == 'DG' ? 'checked' : '' }}>
DG
{{-- Pick Up / Final Delivery Location --}}
Pick Up Location
Kelaniya
Ragana
Final Delivery Location
Kelaniya
Ragana
{{-- Additional Documents --}}
Add Documents (Example: MSDS, Invoice, Packing List, Certificates etc)
Allowed file types: JPG, JPEG, PNG, PDF
{{-- Free Time / DTHC / Destination Charges --}}
Free Time Required
{{ $quatation->free_time }}
DTHC Included
*
dthc_include == 'No' ? 'checked' : '' }}>
No
dthc_include == 'Yes' ? 'checked' : '' }}>
Yes
Destination Charges
*
destination_charge == 'No' ? 'checked' : '' }}>
No
destination_charge == 'Yes' ? 'checked' : '' }}>
Yes
{{-- Commercial Invoice Value --}}
Commercial Value (Shipment Value)
*
{{-- Origin Forwarding / Destination Clearance --}}
Origin Forwarding
*
forword_clearence ? 'selected' : '' }}>Yes
forword_clearence ? 'selected' : '' }}>No
Destination Clearance
destinationclearance ? 'selected' : '' }}>Yes
destinationclearance ? 'selected' : '' }}>No
{{-- Special Document Handling --}}
Special Document Handling
special_document ? 'selected' : '' }}>Yes
special_document ? 'selected' : '' }}>No
@if($quatation->speicalinstruction)
{{ $quatation->speicalinstruction }}
@endif
{{-- Other Special Instructions --}}
Other Special Instructions for quotation
{{ $quatation->other_instruction }}
Back
Save
Please wait...
{{-- end .sq-form-card --}}
@include('frontend.layouts.footer')