@extends('admin.layout') @section('content')
Tables
@if (count($tables) == 0)

NO TABLE FOUND

@else
@foreach ($tables as $key => $table) @endforeach
Table No Status Actions QR Code
{{$table->table_no}} @if ($table->status == 0) Deactive @elseif ($table->status == 1) Active @endif Edit
@csrf
Generate
@endif
@endsection