@include('layouts.navigation')
{{-- Header Stats Cards --}}
🪑

{{ $tables->count() }}

Total Tables

✔️

{{ $tables->where('status', 'available')->count() }}

Available

{{ $tables->where('status', 'in_use')->count() }}

In Use

{{-- Filter & Actions --}}
@if (session('success'))
{{ session('success') }}
@endif {{-- Table --}}
@forelse ($tables as $index => $table) @empty @endforelse
No Name Capacity Status Actions
{{ $index + 1 }} {{ $table->name }} {{ $table->capacity }} @if ($table->status === 'available') Available @else In Use @endif
👁️ ✏️
@csrf @method('DELETE')
📭

No tables found

{{-- ====================== CSS (COPY DARI CONTOH SAMA PERSIS) ====================== --}} {{-- ====================== FILTER SCRIPT ====================== --}}