@include('layouts.navigation')
✏️

Edit Table

Update table information

← Back
@if ($errors->any())
⚠️
Validation Error!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{-- Table Number --}}
🍽️
{{-- Capacity --}}
👥
Maximum number of people for this table
{{-- Is Active --}}
@if ($table->status === 'available') ✓ Table is available @else ⚠️ Table is currently in use @endif
{{-- Info Card --}}
Table ID {{ $table->id }}
Created At {{ $table->created_at->format('d M Y, H:i') }}
Last Updated {{ $table->updated_at->format('d M Y, H:i') }}