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

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

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('cs_report_location_id', __( 'sale.location' ) . ':') !!} {!! Form::select('cs_report_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'cs_report_location_id']); !!}
{!! Form::label('scr_contact_id', __( 'report.contact' ) . ':') !!} {!! Form::select('scr_contact_id', $contact_dropdown, null , ['class' => 'form-control select2', 'id' => 'scr_contact_id', 'placeholder' => __('lang_v1.all'), 'style' => 'width:100%']); !!}
{!! Form::label('user_filter', __( 'report.user' ) . ':') !!} {!! Form::select('user_filter', $usersFilter, null , ['class' => 'form-control select2', 'id' => 'user_filter_id', 'placeholder' => __('lang_v1.all'), 'style' => 'width:100%']); !!}
{!! Form::label('scr_date_filter', __('report.date_range') . ':') !!} {!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'scr_date_filter', 'readonly']); !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@foreach ($users as $user_id => $username) @endforeach @foreach ($users as $user_id => $username) @endforeach
@lang('report.contact'){{ $username }}@lang('sale.total'):
@endcomponent
@endsection @section('javascript') @if(count($users) == 0) @endif @endsection