PHP code example of jn-devops / borrower

1. Go to this page and download the library: Download jn-devops/borrower library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jn-devops / borrower example snippets


use Homeful\Borrower\Borrower;
use Illuminate\Support\Carbon;
use Brick\Money\Money;

$borrower = new Borrower();
$borrower->setBirthdate(Carbon::parse('1999-03-17'));
$borrower->setGrossMonthlyIncome(Money::of(15000.0, 'PHP'));

use Homeful\Borrower\Enums\EmploymentType;

$borrower->setEmploymentType(EmploymentType::LOCAL_PRIVATE);

$coBorrower = (new Borrower())->setBirthdate(Carbon::parse('2001-03-17'))->setGrossMonthlyIncome(Money::of(14000.0, 'PHP'));

$borrower->addCoBorrower($coBorrower);

$monthlyDisposableIncome = $borrower->getMonthlyDisposableIncome();

use Homeful\Borrower\Classes\LendingInstitution;

$lendingInstitution = new LendingInstitution('hdmf');
$borrower->setLendingInstitution($lendingInstitution);

$maxTerm = $borrower->getMaximumTermAllowed();