@extends('layouts.app_pos') @section('title', __('lang_v1.sell_return')) @section('content')
{{__('report.filters')}}
{!! Form::select('sell_list_filter_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all') ]); !!} {!! Form::label('sell_list_filter_location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('sell_list_filter_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!} {!! Form::label('sell_list_filter_customer_id', __('contact.customer') . ':') !!}
{!! Form::text('sell_list_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'id' => 'sell_list_filter_date_range','class' => 'form-control', 'readonly']); !!} {!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':') !!}
@can('access_sell_return')
{!! Form::select('created_by', $sales_representative, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!} {!! Form::label('created_by', __('report.user') . ':') !!}
@endcan
@component('components.widget', ['class' => 'card']) @include('sell_return.partials.sell_return_list') @endcomponent
@stop @section('javascript') @endsection