Refactoring, change menu, add many features

This commit is contained in:
Ludovic CANDELLIER
2021-10-30 02:22:51 +02:00
parent fae7b7897f
commit e356b3fcda
158 changed files with 1114 additions and 412 deletions

View File

@@ -7,12 +7,12 @@
<input type="text" class="form-control search-btn" placeholder="{{ __('search') }}" value="">
@if ((isset($with_filters) and $with_filters) || (isset($with_colvis) and $with_colvis))
@if (($with_filters ?? false) || ($with_colvis ?? false))
<div class="input-group-append">
@if (isset($with_filters) && $with_filters)
@if ($with_filters ?? false)
@include('components.datatables.buttons.filters')
@endif
@if (isset($with_colvis) && $with_colvis)
@if ($with_colvis ?? false)
@include('components.datatables.buttons.colvis')
@endif
</div>