Row adding, some webpack tweaks

This commit is contained in:
2018-08-05 23:26:37 +02:00
parent 671fb9b024
commit ace61f2a07
26 changed files with 628 additions and 133 deletions
+3 -1
View File
@@ -11,14 +11,16 @@
<table class="table table-hover table-sm">
<thead>
<tr>
<th>#</th>
@foreach($columns as $col)
<th>{{ $col->title }}</th>
<th title="{{$col->name}}">{{ $col->title }}</th>
@endforeach
</tr>
</thead>
<tbody>
@foreach($rows as $row)
<tr>
<td>{{$row->_id}}</td>
@foreach($columns as $col)
<td>{{ $row->{$col->name} }}</td>
@endforeach