@extends('admin.layout') @section('title', 'Danh sách đặt chỗ') @section('content')

Danh sách đặt chỗ

@if (request('status') || request('date') || request('time')) Xóa bộ lọc @endif
@csrf @method('PATCH')
@forelse ($bookings as $booking)
{{ $booking->name }} @if ($booking->is_handled) Đã xử lý @else Chờ xử lý @endif
ID
{{ $booking->id }}
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 }}
Đặt lúc
{{ $booking->created_at->diffForHumans() }}
Xem chi tiết
@empty
Chưa có đặt chỗ nào.
@endforelse
{{ $bookings->links() }}
@endsection