@extends('layouts/acc_layout') @section('title', '| Daily Cash & Bank Balance Register') @section('content') @include('successMsg')

Daily Cash & Bank Balance Register
{!! Form::open(['url' => '#', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('branch', 'Branch:', ['class' => 'col-md-1 control-label']) !!}
{!! Form::text('branch', $branch->nameWithCode, ['id' => 'branch', 'class' => 'form-control', 'readonly']) !!}
{!! Form::label('collectionDate', 'Collection Date:', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::text('collectionDate', null, ['id' => 'collectionDate', 'class' => 'form-control', 'readonly']) !!}
{{-- ---------------- Hidden Fields -------------------- --}} {!! Form::hidden('branchId', $branch->branchId) !!} {!! Form::hidden('currencyId', $currency->id) !!} {!! Form::hidden('banknote', $currency->banknote) !!} {{-- ---------------- Hidden Fields -------------------- --}}

Cash in Hand:
@foreach ($takas as $taka) @endforeach @foreach ($takas as $taka) @endforeach @foreach ($takas as $taka) @endforeach
Particulars
Number of Banknotes (TK.) Total Amount
{{ $taka }}
Cash Book
(প্রকৃত হাতে নগদ)
{!! Form::text('noOfCashBookNotes[]', $value = null, [ 'class' => 'form-control text-right noOfCashBookNotes', 'id' => 'noOfCashBookNotes', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', 'data-note' => $taka, ]) !!} {!! Form::text('cashBookSum', $value = null, [ 'class' => 'form-control text-right', 'id' => 'cashBookSum', 'readonly', 'type' => 'text', '-' => '0', 'autocomplete' => 'off', ]) !!}
After Closing
(বিকালের আদায়)
{!! Form::text('noOfAfterClosingNotes[]', $value = null, [ 'class' => 'form-control text-right noOfAfterClosingNotes', 'id' => 'noOfAfterClosingNotes', 'type' => 'text', 'placeholder' => '-', 'readonly', 'autocomplete' => 'off', 'data-note' => $taka, ]) !!} {!! Form::text('afterClosingSum', $value = null, [ 'class' => 'form-control text-right', 'id' => 'afterClosingSum', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', ]) !!}
Cash Deficit
(হাতে নগদ ঘাটতি)
{!! Form::text('cashDeficitReason', $value = null, [ 'class' => 'form-control text-left', 'id' => 'cashDeficitReason', 'type' => 'text', 'placeholder' => 'হাতে নগদ ঘাটতির কারণ ?', 'autocomplete' => 'off', ]) !!} {!! Form::text('cashDeficitAmount', $value = null, [ 'class' => 'form-control text-right', 'id' => 'cashDeficitAmount', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', ]) !!}
Total Amount
(মোট)
{!! Form::text('totalInWords', $value = null, [ 'class' => 'form-control', 'readonly', 'id' => 'totalInWords', 'type' => 'text', 'placeholder' => 'In Words', 'autocomplete' => 'off', ]) !!} {!! Form::text('totalSum', $value = null, [ 'class' => 'form-control text-right', 'id' => 'totalSum', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', ]) !!}
@if (!$BankAcRegisters->isEmpty())

Cash at Bank:
@foreach ($BankAcRegisters as $BankAcRegister) {!! Form::hidden('cashAtBankAcIds[]', $BankAcRegister->id) !!} @endforeach
SL# Bank Account Information Amount
Bank Name A/C Number Routing Number Branch Name
{{ ++$no }} {{ $BankAcRegister->bankName }} {{ $BankAcRegister->bankAcNumber }} {{ $BankAcRegister->acRoutingNumber }} {{ $BankAcRegister->bankBranchName }}, {{ $BankAcRegister->district }} {!! Form::text('cashAtBank[]', $value = null, [ 'class' => 'form-control text-right amount cash-At-Bank', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', ]) !!}
Total Amount {!! Form::text('cashAtBAnkAmountInWords', $value = null, [ 'class' => 'form-control', 'readonly', 'id' => 'cashAtBAnkAmountInWords', 'type' => 'text', 'placeholder' => 'In Words', 'autocomplete' => 'off', ]) !!} {!! Form::text('cashAtBankTotal', $value = null, [ 'class' => 'form-control text-right amount cash-At-Bank-Total', 'style' => 'font-weight: bold', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', ]) !!}
@endif


{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection