@extends('layouts.admin') @section('content')

Booking Detail

Date

{{ $booking->date }}

Time

{{ $booking->schedule ? $booking->schedule->start_time . ' - ' . $booking->schedule->end_time : 'No Schedule' }}

Service

{{ $booking->category }} - {{ $booking->service_name }}

Customer Name

{{ $booking->name }}

Contact

{{ $booking->handphone }}

Status

{{ $booking->status }}
    {{-- You can add additional details here if needed --}}
@endsection