Hide unimplemented feature buttons and indicators with feature flags

This commit is contained in:
2018-08-10 13:32:58 +02:00
parent aceb0453fc
commit c642774316
4 changed files with 41 additions and 15 deletions
+2 -2
View File
@@ -11,7 +11,7 @@
<table class="table table-hover table-sm">
<thead>
<tr>
<th>#</th>
{{--<th>#</th>--}}
@foreach($columns as $col)
<th title="{{$col->name}}">{{ $col->title }}</th>
@endforeach
@@ -20,7 +20,7 @@
<tbody>
@foreach($rows as $row)
<tr>
<td>{{$row->_id}}</td>
{{--<td>{{$row->_id}}</td>--}}
@foreach($columns as $col)
<td>{{ $row->{$col->name} }}</td>
@endforeach