{{-- Booking Code + Status --}}
{{ $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 }}
Storage Type
{{ $booking->storageType->name }}
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) }}
Count
{{ $booking->pallet_count }}
Length
{{ $booking->pallet_length }}
Width
{{ $booking->pallet_width }}
Height
{{ $booking->pallet_height ?? 'N/A' }}
Cartons
{{ $booking->carton_count ?? '-' }}
Length
{{ $booking->carton_length ?? '-' }}
Width
{{ $booking->carton_width ?? '-' }}
Height
{{ $booking->carton_height ?? 'N/A' }}
| Labor Type | Qty | Hours | Rate/Hour | Total |
|---|---|---|---|---|
| {{ $item->laborType->name }} | {{ $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) }} | |||
| Equipment | Qty | Charge Type | Rate | Usage | Total |
|---|---|---|---|---|---|
| {{ $item->equipmentType->name }} | {{ $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) }} | ||||
| 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) }} | ||
| 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 Paid: |
${{ number_format($booking->final_price, 2) }} |
{{ $booking->notes }}