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

Data related to ({{ $table }})

@endsection @section('content')
Return
@if( !empty($rowData) ) @foreach($rowData as $tableValue) @foreach($columns as $column) @endforeach @endforeach @endif
Column Name Value
{{$column }} {{ $tableValue->$column }}
@endsection @section('after-scripts') @endsection