{{ _lang("Loan ID") }} |
{{ $loan->loan_id }} |
{{ _lang("Borrower") }} |
{{ $loan->borrower->name }} |
{{ _lang("Account") }} |
{{ $loan->borrower->email }} |
{{ _lang("Status") }} |
@if($loan->status == 0)
{!! xss_clean(show_status(_lang('Pending'), 'warning')) !!}
@elseif($loan->status == 1)
{!! xss_clean(show_status(_lang('Approved'), 'success')) !!}
@elseif($loan->status == 2)
{!! xss_clean(show_status(_lang('Completed'), 'info')) !!}
@elseif($loan->status == 3)
{!! xss_clean(show_status(_lang('Cancelled'), 'danger')) !!}
@endif
@if($loan->status == 0)
{{ _lang("Click to Approve") }}
{{ _lang("Click to Reject") }}
@endif
|
{{ _lang("First Payment Date") }} |
{{ $loan->first_payment_date }} |
{{ _lang("Release Date") }} |
{{ $loan->release_date != '' ? $loan->release_date : '' }}
|
{{ _lang("Applied Amount") }} |
{{ decimalPlace($loan->applied_amount, $loan->currency->name) }}
|
{{ _lang("Total Payable") }} |
{{ decimalPlace($loan->total_payable, $loan->currency->name) }}
|
{{ _lang("Total Paid") }} |
{{ decimalPlace($loan->total_paid, $loan->currency->name) }}
|
{{ _lang("Due Amount") }} |
{{ decimalPlace($loan->total_payable - $loan->total_paid, $loan->currency->name) }}
|
{{ _lang("Late Payment Penalties") }} |
{{ $loan->late_payment_penalties }} % |
{{ _lang("Attachment") }} |
{!! $loan->attachment == "" ? '' : ''._lang('Download').'' !!}
|
@if($loan->status == 1)
{{ _lang("Approved Date") }} |
{{ $loan->approved_date }} |
{{ _lang("Approved By") }} |
{{ $loan->approved_by->name }} |
@endif
{{ _lang("Description") }} |
{{ $loan->description }} |
{{ _lang("Remarks") }} |
{{ $loan->remarks }} |