- Booking ID
- #{{ $booking->id }}
- Service Type
- {{ $booking->service_type }}
- Booking Date
- {{ $booking->booking_date->format('M d, Y') }}
- Booking Time
- {{ $booking->booking_time }}
- Status
-
{{ ucfirst(str_replace('_', ' ', $booking->status)) }}
- Payment Status
-
{{ ucfirst($booking->payment_status) }}
- Total Price
-
{{ $booking->total_price ? 'Rp ' . number_format($booking->total_price) : 'Not set' }}
@if ($booking->description)
- Description
- {{ $booking->description }}
@endif
@if ($booking->notes)
- Admin Notes
- {{ $booking->notes }}
@endif