@extends ('backend.layouts.app') @section('title', 'All DB Tables') @section('page-header')

All DB Tables

@endsection @section('content')
@if( !empty($tables) ) @foreach ($tables as $table) @endforeach @endif
# Table Schema Size Collation Engine Comment {{ trans('labels.general.actions') }}
{{ $loop->iteration }} {{ $table['name'] }} {{ ( $table['schema'] == 'null' ) ? $table['schema'] : 'NULL' }} {{ $table['size'] }} {{ $table['collation'] }} {{ $table['engine'] }} {{ ( $table['comment'] == 'null' ) ? $table['comment'] : 'NULL' }} View Stucture View Data
@endsection @section('after-scripts') @endsection