@extends('layouts.app') @section('title', __('Sales Report')) @section('content')

{{ __('Sales Return Report')}}

{!! Form::open(['url' => action('ReportController@getStockReport'), 'method' => 'get', 'id' => 'sales_representative_filter_form' ]) !!}
{!! Form::label('sr_id', __('report.user') . ':') !!} {!! Form::select('sr_id', $users, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('report.all_users')]); !!}
{!! Form::label('sr_business_id', __('business.business_location') . ':') !!} {!! Form::select('sr_business_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('sr_date_filter', __('report.date_range') . ':') !!} {!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'sr_date_filter', 'readonly']); !!}
{!! Form::label('method', __('Return Type') . ':') !!}
{!! Form::close() !!}
@lang('messages.date') @lang('sale.invoice_no') @lang('Return Type') @lang('sale.customer_name') Sale Person @lang('sale.location') @lang('sale.payment_status') @lang('sale.total_amount') @lang('sale.total_paid') @lang('sale.total_remaining')
@endsection @section('javascript') @endsection