#16 settings panel scaffolding
This commit is contained in:
14
resources/views/admin/settings/table.blade.php
Normal file
14
resources/views/admin/settings/table.blade.php
Normal 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>
|
||||
Reference in New Issue
Block a user