@include('Commonheader', ['page_title' => 'Table List'])
@include('sidebar')
@include('restaurant.navbar')

Table List

Add Table
@if(session('success'))
{{ session('success') }}
@endif @if ($tables->count())
@foreach ($tables as $table) @endforeach
ID Table Number Seats Created At Actions
{{ $table->id }} {{ $table->table_number ?? 'N/A' }} {{ $table->seats ?? 'N/A' }} {{ $table->created_at ?? 'N/A' }} Edit Delete
@else
No tables found.
@endif
@include('Commonfooter')
@include('Commonscript')