@extends('layouts.admin') @section('title', 'Booking Detail') @section('role-label', 'Business Panel') @section('page-title', 'Booking Detail') @section('sidebar-nav')@include('restaurant-admin.partials.sidebar')@endsection @section('content')
← Back

Customer

Name{{ $booking->customer_name }}
@if($booking->customer_phone) @endif @if($booking->customer_email)
Email{{ $booking->customer_email }}
@endif

Booking

Ref #{{ $booking->booking_number }}
Service{{ $booking->service_name ?? '—' }}
Date{{ \Carbon\Carbon::parse($booking->booking_date)->format('d M Y') }}
@if($booking->booking_time)
Time{{ $booking->booking_time }}
@endif
Party Size{{ $booking->party_size }}
Status {{ $booking->status_label }}
@if($booking->notes)

Notes

{{ $booking->notes }}

@endif

Update Status

@csrf
@endsection