@extends('layouts.app') @section('content')
CHECK NO:{{ $member->checkNumber }}
{{--
{{ $member->checkNumber }}
--}} {{--
{{ $member->email }}
{{ $member->phoneNumber }}
--}}
LOAN TO:
{{ $member->fullName }}
{{ $member->address }}
LOAN ID {{ $member->id }}
Date of Schedule: {{ now()->format('d/m/Y') }}
@php $totalInterest = 0; $totalPrincipal = 0; @endphp @foreach($amortizationSchedule as $index => $item) @php $totalInterest += $item['Interest']; $totalPrincipal += $item['Principal']; @endphp @endforeach
# EMI (TSh) Interest (TSh) Principal (TSh) Balance (TSh)
{{ $index + 1 }} {{ number_format($item['EMI'], 2) }} {{ number_format($item['Interest'], 2) }} {{ number_format($item['Principal'], 2) }} {{ number_format($item['Balance'], 2) }}
Total Interest TSHS {{ number_format($totalInterest, 2) }}
Total Principal TSHS {{ number_format($totalPrincipal, 2) }}
Thank you!
NOTICE:
Finance charges may apply to late payments.
@endsection