@extends('layouts.admin') @section('title','Booking Detail') @section('page-title','Booking Detail') @section('content')
| Reference | {{ $booking->reference_code }} |
|---|---|
| Service | {{ $booking->service_name }} |
| Date | {{ \Carbon\Carbon::parse($booking->appointment_date)->format('D, M j, Y') }} |
| Time | {{ $booking->appointment_time }} |
| Stylist | {{ $booking->staff_name ?? 'Not assigned' }} |
| Service Price | ₵{{ number_format($booking->service_price,2) }} |
| Discount | −₵{{ number_format($booking->discount_amount,2) }} ({{ $booking->coupon_code }}) |
| Total | ₵{{ number_format($booking->total_amount,2) }} |
| Payment | {{ ucfirst($booking->payment_status) }} |
| Notes | {{ $booking->notes }} |
Current: {{ ucfirst($booking->status) }}