@if ($booking->booking_type == 'B2C')
|
{{ $booking->shipment_type ?? '-' }} |
@endif
@if ($booking->booking_type == 'B2C')
@if (!$booking->shipment_mode == null)
{{ $booking->shipment_mode == 'S' ? 'Surface' : 'Express' }}
@else
{{ '-' }}
@endif
|
@endif
{{ $booking->shipment_weight ?? '-' }} |
@if ($booking->booking_type == 'B2B')
₹ {{ \App\Helpers\DateHelper::formatIndianAmount($booking->shipment_amount) }}
|
@endif
@if ($booking->booking_type == 'B2B')
{{ $booking->rov_insurance == 'true' ? 'Delivery' : 'Owner' }} |
@endif
@if ($booking->booking_type == 'B2B')
{{ strtoupper($booking->freight_mode ?? '-') }} |
@endif
@if ($booking->booking_type == 'B2B')
{{ $booking->shipment_total_box_count ?? '-' }} |
@endif
@if ($booking->booking_type == 'B2C')
@foreach ($booking->dimension as $key => $dimension)
{{ $dimension->length_cm }} ×
{{ $dimension->width_cm }} ×
{{ $dimension->height_cm }}
@endforeach
|
@endif
₹
{{ \App\Helpers\DateHelper::formatIndianAmount($booking->booking_amount) ?? '-' }}
|