| Member |
{{ $member->member_name }} |
| Product |
{{ $product->name }} |
| Savings Code |
{{ $account->savingsCode }} |
@if ($account->depositTypeIdFk == 1 || $account->depositTypeIdFk == 5)
| Interest Withdraw Frequency |
{{ $frequencyPeriodList[$account->periodMonth] }} |
@else
| Period |
{{ $account->periodYear . ' Year(s) ' . $account->periodMonth . ' Month(s)' }} |
@endif
@if ($account->depositTypeIdFk == 1 || $account->depositTypeIdFk == 2 || $account->depositTypeIdFk == 3)
| Auto Process Amount |
{{ number_format($account->autoProcessAmount, 0) }}/- |
@else
| Deposit Amount |
{{ number_format($account->fixedDepositAmount, 0) }}/- |
@endif
| Interest Rate |
{{ $account->savingsInterestRate }}% |
| Opening Date |
{{ date('d-m-Y', strtotime($account->accountOpeningDate)) }} |
@if ($account->depositTypeIdFk == 3 || $account->depositTypeIdFk == 4)
| Mature Date |
{{ date('d-m-Y', strtotime($account->accountMatureDate)) }} |
| Payable Amount |
{{ number_format($account->payableAmount, 0) }}/- |
@endif
@if ($account->depositTypeIdFk == 4 || $account->depositTypeIdFk == 5)
| Transaction Type |
{{ $account->transactionType }} |
@if ($transactionType == 'Bank')
| Bank |
{{ $accHead }} |
| Cheque Number |
{{ $chequeNumber }} |
@endif
@endif