| 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) }} | |||
| 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) }} | ||||
| 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: | ${{ number_format($booking->final_price, 2) }} |