@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'TABLE NUMBERS')
@section('content_header_title', 'TABLE NUMBERS')
@section('content_header_subtitle', 'LIST')
{{-- Content body: main page content --}}
@section('content_body')
@can('table number create')
@endcan
| TABLE NUMBER |
LOCATION |
# |
ACTION |
@foreach($table_numbers as $table_number)
| {{$table_number->table_number}} |
{{$table_number->location}} |
{{$table_number->guests()->count()}} |
@can('table number edit')
@endcan
@can('table number delete')
@endcan
|
@endforeach
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush