@extends('layouts.admin') @section('content')
  • {{--

     

    --}}
    {!! Form::open(array('route' => 'global-items.paginate','method' => 'GET','class'=>'filter_form col-md-12 extra_filters','id'=>'ajaxFilter','filterTable'=>"true")) !!}
    {!! Form::label("category", "Category", []) !!} {!! Form::select('category[]',$category, (isset($_GET['category'])?$_GET['category']:''), ['class'=>'form-control select2','multiple'=>true]) !!}
    {!! Form::label("status", "Status", []) !!} {!! Form::select('status[]',activeStatus('',true), (isset($_GET['status'])?$_GET['status']:''), ['class'=>'form-control select2', 'multiple'=>true]) !!}
    {!! Form::label("store", "Store", []) !!} {!! Form::select('store[]',$store, (isset($_GET['store'])?$_GET['store']:''), ['class'=>'form-control select2','multiple'=>true]) !!}
    {!! Form::label("type", "Type", []) !!} {!! Form::select('type[]',itemType(), (isset($_GET['type'])?$_GET['type']:''), ['class'=>'form-control select2','multiple'=>true]) !!}
    {!! Form::submit( __('common.search'), ['class'=>'form-control btn btn-primary btn_sub width80']) !!} {!! __('common.reset') !!}
    {!! Form::close() !!}
@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 @section('script') @endsection