@extends('admin.layouts.app') @section('title', 'Restaurant Tables') @section('content')

Add New Table

@csrf
@foreach($tables as $t) @php $colors = ['available' => '#1F9D55', 'occupied' => '#E53E3E', 'reserved' => '#F5B301', 'disabled' => '#999']; @endphp

{{ $t->table_number }}

{{ $t->capacity }} seats ยท {{ $t->location }}

@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach
@endsection