@php $layout = isSeller() ? 'layouts.seller' : 'layouts.admin'; @endphp @extends($layout) @section('css') @endsection @section('content')
  • {!! Form::open(array('route' => $route, 'method' => 'GET','class'=>'filter_form mobile_filter col-md-12 extra_filters p-0','id'=>'ajaxFilter','filterTable'=>"true")) !!} @if(!isSeller())
    {!! Form::label("store[]", __('employee.store'), ['class' => 'first-column']) !!} {!! Form::select('store[]', $stores ,'', ['class'=>'form-control select2 second-column' , 'multiple' => true]) !!}
    @endif
    {!! Form::label("status[]", __('common.status'), ['class' => 'first-column']) !!} {!! Form::select('status[]', [1 => 'Active' , 0 => 'Inactive'], (isset($_GET['status'])?$_GET['status']:1), ['class'=>'form-control select2 second-column' , 'multiple' => true]) !!}
    {!! Form::label("employee_role[]", __('employee.role'), ['class' => 'first-column']) !!} {!! Form::select('employee_role[]', $employeeGroup , (isset($_GET['employee_role']) ? $_GET['employee_role'] : 1), ['class'=>'form-control select2 second-column' , 'multiple' => true]) !!}
    {!! Form::submit( __('common.search'), ['class'=>'form-control btn btn-primary btn_sub search-btn']) !!} {!! __('common.reset') !!}
    {!! Form::close() !!}
  • @if (isSeller())
  • @endif
@include('layouts.partials.messages')
{!! Form::select('limit', paginationLimitOptions(), defaultPerPage(), ['id'=>'pagination_limit']) !!}
{!! Form::text('search', null, ['id'=>'keyword_search','class'=>'form-control','placeholder'=>__('common.search').'...']) !!}
@endsection