#16 settings panel scaffolding

This commit is contained in:
Nabeel Shahzad
2017-06-20 18:49:45 -05:00
parent 11b3ec349b
commit c27a11ab21
13 changed files with 815 additions and 616 deletions

View File

@@ -0,0 +1,14 @@
<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>