Refactoring, change menu, add many features
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user