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

Dine-in Tables

@foreach ($tables as $t)
{{ $t->name }} {{ ucfirst($t->status) }}
Capacity: {{ $t->capacity }}
@if ($t->activeOrder && $t->activeOrder->placed_by_customer && $t->activeOrder->status === 'open')
📱 New order placed by customer — review before sending to kitchen
@endif Open POS
@csrf @method('PATCH')
@csrf @method('PATCH')
@endforeach
@endsection