@extends('layouts.admin') @section('content')
{!! Form::open(array('route' => $route, 'method' => 'GET', 'class'=>'filter_form mobile_filter d-block')) !!}
{!! Form::label("date", __('report.date')) !!}
{!! Form::hidden('from_date', (isset($inputs['from_date'])?dateFormat($inputs['from_date'], 'd-m-Y') :''), ['id' => 'from']) !!} {!! Form::hidden('to_date', (isset($inputs['to_date'])?dateFormat($inputs['to_date'], 'd-m-Y') :''), ['id' => 'to']) !!} {{--
--}} {{----}} {{----}} {{----}} {{--
--}} {{--{!! Form::hidden('from_date', (isset($inputs['from_date'])?dateFormat($inputs['from_date'], 'd-m-Y') :''), ['id' => 'from_date']) !!}--}} {{--{!! Form::hidden('to_date', (isset($inputs['to_date'])?dateFormat($inputs['to_date'], 'd-m-Y') :''), ['id' => 'to_date']) !!}--}}
{!! Form::label("category_ids", __('report.category') , ['class' => 'first-column']) !!} {!! Form::select('category_ids[]', $category, (isset($inputs['category_ids'])?$inputs['category_ids']:[]), [ 'class'=>'form-control select2 second-column', 'id' => 'category_id', 'multiple' => true, ]) !!}
{!! Form::label("item_ids", __('report.inv_items'), ['class' => 'first-column']) !!} {!! Form::select('item_ids[]', $inventoryItems, (isset($inputs['item_ids'])?$inputs['item_ids']:''), ['class'=>'form-control select2','multiple' => true ,'data-actions-box'=>'true', 'data-width'=>'100%',]) !!}
{!! Form::hidden('filter', 1) !!} {!! __('orders.reset') !!}
{!! Form::close() !!} @if(isset($itemSales) && count($itemSales) > 0) @endif
@include('admin.report.inventory-item-sale-view')
{{ __('common.sr-no')}} {{ __('report.product_no')}} {{ __('report.item_name')}} {{ __('report.quantity')}} {{ __('report.item_sale')}} {{ __('report.issued_quantity')}} {{ __('report.issue_quantity_sales')}}
@endsection @section('script') @endsection