{{-- Basic table view --}} @extends('layouts.app') @php /** @var \App\Models\Table $table */ @endphp @section('content')

{{ $table->title }}

@foreach($columns as $col) @endforeach @foreach($rows as $row) @php($rdata = json_decode($row['data'], true)) @foreach($columns as $col) @endforeach @endforeach
ID{{ $col->title }}
#{{ $row->id }}{{ $rdata[$col->name] }}
@endsection