@extends('layouts.seller') @section('content')
@include('layouts.partials.messages')
{!! Form::open(array('route' => 'seller.item.index', 'method' => 'GET','class'=>'filter_form col-md-12')) !!}
{!! 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',[''=>__('common.select-option')]+activeStatus(), (isset($_GET['status'])?$_GET['status']:''), ['class'=>'form-control select2']) !!}
{!! Form::label("item_type", "Item Type", []) !!} {!! Form::select('item_type',[''=>__('common.select-option'),'1'=>'Store Items','2'=>'Global Items'],(isset($_GET['item_type'])?$_GET['item_type']:'') , ['class'=>'form-control select2']) !!}
{!! Form::submit(__('orders.search'), ['class'=>'btn btn-primary btn_sub width80']) !!} {!! __('orders.reset') !!}
{!! Form::close() !!}
{{ __('common.sr-no') }} {{ __('item.image') }} {{ __('item.name') }} {{ __('category.category') }} {{ __('item.regular_price') }} {{ __('item.offer_price') }} {{ __('item.status') }}
@endsection @section('script') @endsection