{{translate('borrower')}} # |
{{$loan->borrower->title}} {{$loan->borrower->first_name}} {{$loan->borrower->last_name}} |
{{translate('loan')}} # |
{{$loan->id}} |
{{translate('released')}} |
{{$loan->release_date}} |
{{translate('maturity_date')}} |
{{$loan->maturity_date}} |
{{translate('repayment')}} |
@if($loan->repayment_cycle=='daily')
{{translate('daily')}}
@endif
@if($loan->repayment_cycle=='weekly')
{{translate('weekly')}}
@endif
@if($loan->repayment_cycle=='monthly')
{{translate('monthly')}}
@endif
@if($loan->repayment_cycle=='bi_monthly')
{{translate('bi_monthly')}}
@endif
@if($loan->repayment_cycle=='quarterly')
{{translate('quarterly')}}
@endif
@if($loan->repayment_cycle=='semi_annual')
{{translate('semi_annually')}}
@endif
@if($loan->repayment_cycle=='annually')
{{translate('annual')}}
@endif
|
{{translate('principal')}} |
{{currency_converter($loan->principal)}} |
{{translate('interest')}}% |
{{currency_converter($loan->interest_rate)}}
%/{{$loan->interest_period}} |