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

Table Data of {{ $table }}

@endsection @section('content')
Return
@foreach($columns as $column) @endforeach @if( !empty($tableData) ) @foreach($tableData as $tableValue) @php $i=0; @endphp @foreach($columns as $column) @if( $i === 0 ) @php $i++; @endphp @endif @endforeach @endforeach @endif
{{ trans('labels.general.actions') }}{{ $column }}
View Data {{ $tableValue->$column }}
@endsection @section('after-scripts') @endsection