@extends('layouts/acc_layout') @section('title', '| Bank Reconciliation') @section('content') @include('successMsg')
| SL# | Branch | Bank Account Information | Balance | ||||
|---|---|---|---|---|---|---|---|
| Bank Name | A/C Number | Branch Name | Bank Book | Bank Statement | Diffrence | ||
| {{ ++$no }} | {{ $bankReconcile->branchCodeWith0 }} - {{ $bankReconcile->branchName }} | {{ $bankReconcile->bankName }} | {{ $bankReconcile->bankAcNumber }} | {{ $bankReconcile->bankBranchName }}, {{ $bankReconcile->district }} | {!! Form::text('bankBookBalance[]', $bankReconcile->balance, ['class' => 'form-control text-right bankBookBalance', 'id' => 'bankBookBalance', 'type' => 'text', 'placeholder' => '0', 'autocomplete' => 'off', 'readonly']) !!} | {!! Form::text('bankBalance[]', $bankReconcile->bankStatementBalance, ['class' => 'form-control text-right bankBalance', 'id' => 'bankBalance', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off', 'readonly' => $bankReconcile->isAllowEntry ? false : true]) !!} | {!! Form::text('balanceDifference[]', null, ['class' => 'form-control text-right balanceDifference', 'id' => 'balanceDifference', 'type' => 'text', 'placeholder' => '0', 'autocomplete' => 'off', 'readonly']) !!} |
| Total: | {!! Form::text('bankBookBalanceTotalSum', null, ['class' => 'form-control text-right', 'id' => 'bankBookBalanceTotalSum', 'readonly', 'type' => 'text', 'placeholder' => '0', 'autocomplete' => 'off']) !!} | {!! Form::text('bankBalanceTotalSum', null, ['class' => 'form-control text-right', 'id' => 'bankBalanceTotalSum', 'readonly', 'type' => 'text', 'placeholder' => '0', 'autocomplete' => 'off']) !!} | {!! Form::text('differenceTotalSum', null, ['class' => 'form-control text-right', 'id' => 'differenceTotalSum', 'readonly', 'type' => 'text', 'placeholder' => '0', 'autocomplete' => 'off']) !!} | ||||