@extends('reports.layouts.master')
@section('title', 'Calculator Results - Amortization Schedule')
@section('footer')
@include('reports.layouts.footer', ['setting' => $setting])
@endsection
@section('header')
@include('reports.layouts.header', ['setting' => $setting])
@endsection
@section('title-content')
|
Calculator - Amortization Schedule
|
|
Loan Type: {{$data['loan_type']}}
|
Service Fee: {{$data['service_fee']}}
|
Interest Type: {{ $data['interest_type_display']}}
|
|
Repayment Period: {{$data['period']}}
|
Interest Rate: {{$data['rate']}}
|
Payment Frequency: {{ $data['frequency_display']}}
|
|
Amount: {{formatMoney($data['amount'])}}
|
Start Date: {{ formatDate($data['start_date'])}}
|
@endsection
@section('main-content')
| Period |
Due Date |
Payment |
Interest |
Principal |
Balance |
@foreach($amortization as $row)
@if($loop->last)
| {{ $row->count }} |
{{ $row->due_date }} |
{{ $row->payment }} |
{{ $row->interest }} |
{{ $row->principal }} |
{{ $row->balance }} |
@else
| {{ $row->count }} |
{{ $row->due_date }} |
{{ $row->payment }} |
{{ $row->interest }} |
{{ $row->principal }} |
{{ $row->balance }} |
@endif
@endforeach
@endsection