@extends('admin.layout') @section('title', 'Chi tiết đặt chỗ') @section('content') ← Quay lại danh sách

{{ $booking->name }}

@if ($booking->is_handled) Đã xử lý @else Chờ xử lý @endif
Số điện thoại
{{ $booking->phone }}
Email
{{ $booking->email }}
Ngày & Giờ
{{ $booking->booking_at->format('d/m/Y H:i') }}
Số khách
{{ $booking->guests }}
Ghi chú
{{ $booking->note ?: '—' }}
@csrf @method('PATCH')
@endsection