| {{ $sl++ }} |
@if ($key==0 || $isMemberChanged==1)
{{$members[$openingAccount->memberIdFk]->code}} |
{{$members[$openingAccount->memberIdFk]->name}} |
@endif
{{ $openingAccount->savingsCode }}
{!! Form::hidden('accId[]',$openingAccount->id) !!}
|
@php
$openingPrincipal = $openingInfos[$openingAccount->id]->openingPrincipal ?? 0;
$actPrincipal = $openingInfos[$openingAccount->id]->actPrincipal ?? 0;
$openingInterest = $openingInfos[$openingAccount->id]->openingInterest ?? 0;
$openingWithdraw = $openingInfos[$openingAccount->id]->openingWithdraw ?? 0;
$openingBalance = $openingInfos[$openingAccount->id]->openingBalance ?? 0;
$provisionBalance = $openingInfos[$openingAccount->id]->provisionBalance ?? 0;
@endphp
{!! Form::text('deposit[]',number_format($openingPrincipal,2),['class'=>'textRight deposit']) !!} |
{!! Form::text('actPrincipal[]',number_format($actPrincipal,2),['class'=>'textRight actPrincipal']) !!} |
{!! Form::text('interest[]',number_format($openingInterest,2),['class'=>'textRight interest']) !!} |
{!! Form::text('withdraw[]',number_format($openingWithdraw,2),['class'=>'textRight withdraw']) !!} |
{!! Form::text('balance[]',number_format($openingBalance,2),['class'=>'textRight balance','readonly']) !!} |
{!! Form::text('provisionBalance[]',number_format($provisionBalance,2),['class'=>'textRight provisionBalance']) !!} |
@endforeach
| Total |
{!! Form::text('depositTotal',null,['class'=>'textRight depositTotal','readonly']) !!} |
{!! Form::text('actPrincipalTotal',null,['class'=>'textRight actPrincipalTotal','readonly']) !!} |
{!! Form::text('interestTotal',null,['class'=>'textRight interestTotal','readonly']) !!} |
{!! Form::text('withdrawTotal',null,['class'=>'textRight withdrawTotal','readonly']) !!} |
{!! Form::text('balanceTotal',null,['class'=>'textRight balanceTotal','readonly']) !!} |
{!! Form::text('provisionBalanceTotal',null,['class'=>'textRight provisionBalanceTotal','readonly']) !!} |