Warehouse Information

Address:
{{ $booking->warehouse->address }}
{{ $booking->warehouse->city }}, {{ $booking->warehouse->state }} {{ $booking->warehouse->zipcode }}
Start Date:
{{ $booking->start_date->format('M d, Y') }}
End Date:
{{ $booking->end_date->format('M d, Y') }}
Rental Period:
{{ $booking->rental_days }} Day(s)
Product Category:
{{ $booking->productCategory?->name ?? 'N/A' }}
Storage Type:
{{ $booking->storageType?->name ?? 'N/A' }}

Space Details

Input Method:
{{ ucfirst($booking->input_type) }}
Total Space:
{{ number_format($booking->calculated_sqft, 2) }} Sq.Ft
Pallets:
{{ $booking->calculated_pallets ?? '-' }}
Space Price:
${{ number_format($booking->space_price, 2) }}
@if($booking->input_type === 'pallet')

Pallet Dimensions

Count:
{{ $booking->pallet_count ?? '-' }}
Length:
{{ $booking->pallet_length ?? '-' }} in
Width:
{{ $booking->pallet_width ?? '-' }} in
Height:
{{ $booking->pallet_height ?? 'N/A' }} in
@elseif($booking->input_type === 'carton')

Carton Dimensions

Count:
{{ $booking->carton_count ?? '-' }}
Length:
{{ $booking->carton_length ?? '-' }} in
Width:
{{ $booking->carton_width ?? '-' }} in
Height:
{{ $booking->carton_height ?? '-' }} in
@endif @if($booking->laborItems?->count() > 0)

Labor Services

@foreach($booking->laborItems as $item) @endforeach
Labor Type Qty Hours Rate/Hour Total
{{ $item->laborType?->name ?? $item->labor_type }} {{ $item->quantity }} {{ $item->hours }} ${{ number_format($item->rate_per_hour, 2) }} ${{ number_format($item->total_cost, 2) }}
Total Labor Cost: ${{ number_format($booking->labor_cost, 2) }}
@endif @if($booking->equipmentItems?->count() > 0)

Equipment Rentals

@foreach($booking->equipmentItems as $item) @endforeach
Equipment Qty Charge Type Rate Usage Total
{{ $item->equipmentType?->name ?? $item->equipment_type }} {{ $item->quantity }} {{ ucfirst($item->charge_type) }} ${{ number_format($item->rate, 2) }} {{ $item->usage_amount }} ${{ number_format($item->total_cost, 2) }}
Total Equipment Cost: ${{ number_format($booking->equipment_cost, 2) }}
@endif @if($booking->services?->count() > 0)

Additional Services

@foreach($booking->services as $service) @endforeach
Service Quantity Unit Price Total
{{ $service->pivot->service_name }} {{ $service->pivot->quantity }} ${{ number_format($service->pivot->unit_price, 2) }} ${{ number_format($service->pivot->total_cost, 2) }}
Total Services Cost: ${{ number_format($booking->additional_services_cost, 2) }}
@endif

Payment Summary

@if($booking->labor_cost > 0) @endif @if($booking->equipment_cost > 0) @endif @if($booking->additional_services_cost > 0) @endif @if($booking->tax_amount > 0) @endif
Space Rental Cost: ${{ number_format($booking->space_price, 2) }}
Labor Cost: ${{ number_format($booking->labor_cost, 2) }}
Equipment Cost: ${{ number_format($booking->equipment_cost, 2) }}
Additional Services: ${{ number_format($booking->additional_services_cost, 2) }}
Subtotal: ${{ number_format($booking->subtotal, 2) }}
Tax & Fees: ${{ number_format($booking->tax_amount, 2) }}
Total Amount: ${{ number_format($booking->final_price, 2) }}