@extends('dashboard.core') @section('dashboard-heading') @if(count($rows) > 0) @endif @endsection @section('dashboard-body')
@foreach($columns as $index => $column) @endforeach @foreach($rows as $row) @foreach($columns as $index => $column) @endforeach @endforeach
{{ $column_headings[$index] }}
{{ $column_headings[$index] }}: {{ $row[$column['name']] }}
@endsection