@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')
NEW
@endcan

TABLE NUMBER LIST

{{html()->form('GET', route('table-number.index'))->open()}}
{{html()->text('search')->value($search)->class('form-control')->placeholder('Search')}}
{{html()->form()->close()}}
@foreach($table_numbers as $table_number) @endforeach
TABLE NUMBER LOCATION # ACTION
{{$table_number->table_number}} {{$table_number->location}} {{$table_number->guests()->count()}} @can('table number edit') @endcan @can('table number delete') @endcan
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush