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

{{ __('Reports Outstanding') }}

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('sell_list_filter_location_id', __('purchase.business_location') . ':') !!}
{!! Form::label('sell_list_filter_customer_id', __('contact.customer') . ':') !!} {!! 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_date_range', __('report.date_range') . ':') !!} {!! Form::text('sell_list_filter_date_range', null, [ 'placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly', ]) !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('Customer Name') @lang('Total Amount') @lang('Total Outstanding') @lang('Total Return Due') @lang('Total Paid')
@endcomponent
@endsection @section('javascript') @endsection