@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('date_range', __('report.date_range') . ':') !!}
{!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'credit_notes_date_filter', 'readonly']); !!}
{!! Form::label('credit_notes_customer_id', __('contact.customer') . ':') !!}
{!! Form::select('credit_notes_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('credit_notes_payment_status', __('purchase.payment_status') . ':') !!}
{!! Form::select('credit_notes_payment_status', ['paid' => __('lang_v1.paid'), 'due' => __('lang_v1.due'), 'partial' => __('lang_v1.partial'), 'overdue' => __('lang_v1.overdue')], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
| Invoice NO |
Customer |
Status |
Issued Date |
Total Amount |
Paid Amount |
Paid Date |
Due Amount |
@endcomponent
@endsection
@section('javascript')
@endsection