phpvms/resources/views/admin/settings/table.blade.php
2017-06-20 18:49:45 -05:00

15 lines
264 B
PHP

<table class="table table-responsive" id="settings-table">
<thead>
<th>Name</th>
<th>Value</th>
</thead>
<tbody>
@foreach($settings as $s)
<tr>
<td>{!! $s->key !!}</td>
<td>{!! $s->value !!}</td>
</tr>
@endforeach
</tbody>
</table>