@extends('layouts.admin') @section('title', 'Bookings') @section('role-label', 'Business Panel') @section('page-title', 'Bookings') @section('page-subtitle', 'Manage appointments and reservations') @section('sidebar-nav')@include('restaurant-admin.partials.sidebar')@endsection @section('content')
| Booking # | Customer | Service | Date & Time | Status | Actions |
|---|---|---|---|---|---|
| {{ $booking->booking_number }} |
{{ $booking->customer_name }}
@if($booking->customer_phone){{ $booking->customer_phone }} @endif
|
{{ $booking->service_name ?? '—' }} |
{{ \Carbon\Carbon::parse($booking->booking_date)->format('d M Y') }}
@if($booking->booking_time){{ $booking->booking_time }} @endif
|
{{ $booking->status_label }} | |
| No bookings yet. | |||||