@extends ('backend.layouts.app') @section('title', 'Table Schema View' ) @section('page-header')

Schema of {{$table}}

@endsection @section('content')
Return
@if( !empty($columnsSchema) ) @foreach ($columnsSchema as $columnSchema) @endforeach @endif
# Field Name Type Name Null Default Auto Increment Collation Comment
{{ $loop->iteration }} {{ $columnSchema['name'] }} {{ $columnSchema['type'] }} {{ $columnSchema['nullable'] }} {{ $columnSchema['default'] }} {{ $columnSchema['auto_increment'] }} {{ $columnSchema['collation'] }} {{ $columnSchema['comment'] }}
@endsection @section('after-scripts') @endsection