{{-- @extends('layouts/microfin_layout') @section('title', '| Redo Mfn Auto Vouchers Process') @section('content') --}}
{{-- div for Company --}} {{-- {{$branchNameCode}}
--}} Loan Information
{{-- first table --}}
@php $sl = 1; $totalLoanAmount = 0; $totalOutstanding = 0; $totalOutstandingPrincipal = 0; $totalDue = 0; $totalAprilRecoverable = 0; $totalAprilRecovery = 0; $wsBalance = 0; @endphp @foreach($loanInfo as $single) @php $sl++; $totalLoanAmount += $single['loanAmount']; $totalOutstanding += $single['outstanding']; $totalOutstandingPrincipal += $single['outstandingPrincipal']; $totalDue += $single['due']; $totalAprilRecoverable += $single['aprilRecoverable']; $totalAprilRecovery += $single['aprilRecovery']; $wsBalance += $single['wsBalance']; @endphp @endforeach
SL# Member Name Member Code Loan Code Disburse Date Loan Amount Outstanding Outstanding Principal Due This Month Recoverable This Month Recovery WS Balance
{{$sl}} {{$memberInfo[$single['memberId']]->name}} {{$memberInfo[$single['memberId']]->code}} {{$single['loanCode']}} {{$single['disbursementDate']}} {{$single['loanAmount']}} {{$single['outstanding']}} {{$single['outstandingPrincipal']}} {{$single['due']}} {{$single['aprilRecoverable']}} {{$single['aprilRecovery']}} {{$single['wsBalance']}}
Total: {{$totalLoanAmount}} {{$totalOutstanding}} {{$totalOutstandingPrincipal}} {{$totalDue}} {{$totalAprilRecoverable}} {{$totalAprilRecovery}} {{$wsBalance}}
{{-- @endsection --}}