1234567891011121314151617181920212223242526 |
- <div class="hidden">
- <div class="filter-box right-side-filter-container" style="{!! $style !!}" id="{{ $filterID }}">
- <form action="{!! $action !!}" class="form-horizontal" pjax-container method="get">
- <div class="mb-1" style="height: 55px">
- <div class="p-1 position-fixed d-flex justify-content-between header">
- <div>
- <button type="submit" class=" btn btn-sm btn-primary submit">
- <i class="feather icon-search"></i> {{ __('admin.search') }}
- </button>
- @if(!$disableResetButton)
- <a href="{!! $action !!}" class="reset btn btn-sm btn-white">
- <i class="feather icon-rotate-ccw"></i> {{ __('admin.reset') }}
- </a>
- @endif
- </div>
- </div>
- </div>
- @foreach($layout->columns() as $column)
- @foreach($column->filters() as $filter)
- {!! $filter->render() !!}
- @endforeach
- @endforeach
- </form>
- </div>
- </div>
|