@extends('layouts.app') @section('title', 'Reservations') @section('content')
| Time | Customer | Phone | Party | Table | Status | |
|---|---|---|---|---|---|---|
| {{ $r->reservation_time->format('h:i A') }} | {{ $r->customer_name }} | {{ $r->phone }} | {{ $r->party_size }} | {{ $r->table->name ?? 'Any table' }} | {{ ucfirst(str_replace('_',' ',$r->status)) }} | @if ($r->status === 'booked') @endif |
| No reservations for this date. | ||||||