mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
27 lines
801 B
PHP
27 lines
801 B
PHP
@extends('dashboard.core')
|
|
|
|
@section('dashboard-heading')
|
|
<a href="/dashboard/export/{{ $model }}"><button type="button" class="btn btn-default">Export</button></a>
|
|
@endsection
|
|
|
|
@section('dashboard-body')
|
|
<table class="table">
|
|
<thead>
|
|
<tr class="heading-row">
|
|
@foreach($columns as $column)
|
|
<th>{{ $column[0] }}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
@foreach($rows as $row)
|
|
<tr>
|
|
@foreach($columns as $column)
|
|
<td><strong class="mobile-heading">{{ $column[0] }}: </strong>{{ $row[$column[1]] }}</td>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endsection
|