@extends('layouts.admin') @section('title', 'Table List') @section('content-header', 'Table List') @section('content-actions') Add Table @endsection @section('content')
@csrf
@foreach ($tables as $table) @endforeach
Branch ID Table Name Max Quantity Status Action
{{ $table->BID }} {{ $table->table_name }} {{ $table->max_qty }} {{$table->status ? 'Active' : 'Inactive'}}
@endsection @section('js') @endsection