@extends('layouts.app') @section('title', __('accounting-reports::lang.cheque_book')) @section('content')

@lang('accounting-reports::lang.cheque_book')

@component('components.widget', ['class' => 'box-primary'])

{!! Form::label('filter_account_id', __('accounting-reports::lang.bank_account') . ':') !!} {!! Form::select('filter_account_id', $accounts, null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_account_id']) !!}
{!! Form::label('filter_type', __('accounting-reports::lang.cheque_type') . ':') !!} {!! Form::select('filter_type', ['issued' => __('accounting-reports::lang.issued'), 'received' => __('accounting-reports::lang.received')], null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_type']) !!}
{!! Form::label('filter_status', __('accounting-reports::lang.cheque_status') . ':') !!} {!! Form::select('filter_status', ['pending' => __('accounting-reports::lang.pending'), 'cleared' => __('accounting-reports::lang.cleared'), 'bounced' => __('accounting-reports::lang.bounced'), 'cancelled' => __('accounting-reports::lang.cancelled'), 'deposited' => __('accounting-reports::lang.deposited')], null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_status']) !!}
{!! Form::label('filter_start_date', __('report.start_date') . ':') !!} {!! Form::text('filter_start_date', null, ['class' => 'form-control date-picker', 'readonly', 'id' => 'filter_start_date']) !!}
{!! Form::label('filter_end_date', __('report.end_date') . ':') !!} {!! Form::text('filter_end_date', null, ['class' => 'form-control date-picker', 'readonly', 'id' => 'filter_end_date']) !!}
@lang('accounting-reports::lang.cheque_date') @lang('accounting-reports::lang.cheque_no') @lang('accounting-reports::lang.bank_account') @lang('accounting-reports::lang.cheque_type') @lang('accounting-reports::lang.amount') @lang('accounting-reports::lang.payee_name') @lang('accounting-reports::lang.cheque_status') @lang('accounting-reports::lang.cleared_date') @lang('messages.action')
@lang('sale.total'):
@endcomponent
@endsection @section('javascript') @endsection