@extends('layouts.app') @section('title', __('report.sales_representative')) @section('content')

{{ __('report.sales_representative')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, '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::close() !!} @endcomponent
@component('components.widget', ['title' => __('report.summary')])

{{ __('report.total_sell') }} - {{ __('lang_v1.total_sales_return') }}: - =

{{ __('lang_v1.total_payment_with_commsn') }}:

{{ __('lang_v1.total_sale_commission') }}:

{{ __('report.total_expense') }}:

@endcomponent
@endsection @section('javascript') @endsection