@extends ('backend.layouts.app')
@section('title', 'Table Data')
@section('page-header')
Data related to ({{ $table }})
@endsection
@section('content')
| Column Name |
Value |
@if( !empty($rowData) )
@foreach($rowData as $tableValue)
@foreach($columns as $column)
| {{$column }} |
{{ $tableValue->$column }} |
@endforeach
@endforeach
@endif
@endsection
@section('after-scripts')
@endsection