bankloan
Amortization Schedule Calculator
##Installation
Use Composer to install the library.
$ composer require jiangbianwanghai/bankloan
##Usage
<?php
require_once __DIR__.'/vendor/autoload.php';
use Jiangbianwanghai\BankLoan\BankLoan;
$bl = new BankLoan(['loanAmount' => 100000, 'year' => 10]);
var_dump($bl->getELP()); // Get equal loan payments result.
var_dump($bl->getEPP()); // Get equal principal payments result.
##Note
Now only supports China。
##License The MIT License (MIT). Please see License File for more information.