@extends('layouts.master') @section('title') Loan Details @endsection @section('content')
# | Principal | Released | Interest% | Due | Paid | Balance | Status | {{ trans('general.action') }} |
---|---|---|---|---|---|---|---|---|
{{$key->id}} | ${{round($key->principal,2)}} | {{$key->release_date}} | {{round($key->interest_rate,2)}}%/{{$key->interest_period}} | {{round(\App\Helpers\GeneralHelper::loan_total_due_amount($key->id),2)}} | {{round(\App\Helpers\GeneralHelper::loan_total_paid($key->id),2)}} | {{round(\App\Helpers\GeneralHelper::loan_total_balance($key->id),2)}} |
@if($key->maturity_date |
|