@extends('layouts/acc_layout') @section('title', '| FDR Register') @section('content')

LOAN INTEREST ACCOUNT LIST

@php use Carbon\Carbon; @endphp @if($loanIntInfos) @foreach($loanIntInfos as $index => $loanIntInfo) @endforeach @endif
SL# Bank Name Brnach Name Account Number Date Loan Interest Amount (Tk) Bank Charge (Tk) Action
{{$index+1}} {{$loanIntInfo->bank_name}} {{$loanIntInfo->branch_name}} {{$loanIntInfo->accNo}} @php $paymentDate = isset($loanIntInfo->loanInterestPayDate) ? Carbon::parse($loanIntInfo->loanInterestPayDate)->format('d-m-Y') : ''; @endphp {{$paymentDate}} {{number_format($loanIntInfo->loanInterestAmt,2)}} {{number_format($loanIntInfo->loanBankCharge,2)}}  
@include('dataTableScript') @endsection