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

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

@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_status', __('accounting-reports::lang.status') . ':') !!} {!! Form::select('filter_status', ['active' => __('accounting-reports::lang.active'), 'completed' => 'Completed', 'cancelled' => __('accounting-reports::lang.cancelled')], null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_status']) !!}
@lang('accounting-reports::lang.book_name') @lang('accounting-reports::lang.bank_account') @lang('accounting-reports::lang.cheque_range') @lang('accounting-reports::lang.total_cheques') @lang('accounting-reports::lang.used_cheques') @lang('accounting-reports::lang.remaining_cheques') @lang('accounting-reports::lang.issue_date') @lang('accounting-reports::lang.status') @lang('messages.action')
@endcomponent
@endsection @section('javascript') @endsection