Name |
No of seats |
Location |
Guests can book for food |
Guests can book |
Actions |
@foreach($tables as $table)
{{ $table->name }} |
{{ $table->no_of_seats }} |
{{ $table->table_location }}
|
@if($table->guests_can_book_for_food == 1)
Yes
@else
No
@endif
|
@if($table->bookable_by_guest== 1)
Yes
@else
No
@endif
|
|
@endforeach
@foreach($tableLocation as $tl)
Name |
No of seats |
Location |
Actions |
@foreach($tables->where('table_location', $tl->name) as $table)
{{ $table->name }} |
{{ $table->no_of_seats }} |
{{ $table->table_location }} |
|
@endforeach
@endforeach