@extends('admin.layouts.app')
@section('title', 'Restaurant Tables')
@section('content')
@foreach($tables as $t)
@php
$colors = ['available' => '#1F9D55', 'occupied' => '#E53E3E', 'reserved' => '#F5B301', 'disabled' => '#999'];
@endphp
{{ $t->table_number }}
{{ $t->capacity }} seats ยท {{ $t->location }}
@endforeach
@endsection