{{-- resources/views/admin/warehouse-bookings/show.blade.php --}} @extends('admin.layouts.base') @section('title', 'Booking Details - ' . $booking->booking_code) @section('content')
| Labor Type | Qty | Hours | Rate/Hour | Total |
|---|---|---|---|---|
| {{ $labor->laborType->name }} | {{ $labor->quantity }} | {{ $labor->hours }} | ${{ number_format($labor->rate_per_hour, 2) }} | ${{ number_format($labor->total_cost, 2) }} |
| Equipment | Qty | Charge Type | Rate | Usage | Total |
|---|---|---|---|---|---|
| {{ $equipment->equipmentType->name }} | {{ $equipment->quantity }} | {{ ucfirst($equipment->charge_type) }} | ${{ number_format($equipment->rate, 2) }} | {{ $equipment->usage_amount }} | ${{ number_format($equipment->total_cost, 2) }} |
| Service Name | Qty | Unit Price | Total |
|---|---|---|---|
| {{ $service->pivot->service_name ?? $service->name }} | {{ $service->pivot->quantity ?? 1 }} | ${{ number_format($service->pivot->unit_price ?? 0, 2) }} | ${{ number_format($service->pivot->total_cost ?? 0, 2) }} |
{{ $booking->notes }}