@extends('layouts.app') @section('title', 'Customer Advance Deposits Report') @section('content')

Customer Advance Deposits Report

@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' => 'adv_dep_date_filter', 'readonly']); !!}
{!! Form::label('adv_dep_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('adv_dep_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('adv_dep_customer_id', __('contact.customer') . ':') !!} {!! Form::select('adv_dep_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('adv_dep_payment_method', __('lang_v1.payment_method') . ':') !!} {!! Form::select('adv_dep_payment_method', ['cash' => __('lang_v1.cash'), 'card' => __('lang_v1.card'), 'cheque' => __('lang_v1.cheque'), 'bank_transfer' => __('lang_v1.bank_transfer'), 'other' => __('lang_v1.other'), 'custom_pay_1' => __('lang_v1.custom_payment_1'), 'custom_pay_2' => __('lang_v1.custom_payment_2'), 'custom_pay_3' => __('lang_v1.custom_payment_3')], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
@endcomponent @component('components.widget', ['class' => 'box-primary'])
Date Location Customer Payment Method Ref No Note Amount
@endcomponent
@endsection @section('javascript') @endsection