@extends('adminlte::page')
@section('title','Collection Details')
@section('content_header')
@stop
@section('css')
@stop
@section('content')
| Receipt No |
{{ $collection->receipt_no }}
|
| Collection Date |
{{ date('d-m-Y',strtotime($collection->collection_date)) }} |
| Mobile |
{{ $collection->account->mobile ?? '-' }} |
| Account No |
{{ $collection->account->account_no ?? '-' }} |
| Customer |
{{ $collection->account->customer_name ?? '-' }} |
| Status |
@if($collection->loan->status=='Closed')
Closed
@else
Active
@endif
|
| Loan Amount |
₹ {{ number_format($collection->loan->loan_amount,2) }}
|
| Interest Rate |
{{ $collection->loan->interest_rate }} %
|
| Total Interest |
₹ {{ number_format($collection->loan->total_interest,2) }}
|
| Total Payable |
₹ {{ number_format($collection->loan->total_payable,2) }}
|
| EMI Amount |
₹ {{ number_format($collection->loan->emi_amount,2) }}
|
| Collection Amount |
₹ {{ number_format($collection->collection_amount,2) }}
|
| Principal Amount |
₹ {{ number_format($collection->principal_amount,2) }}
|
| Interest Amount |
₹ {{ number_format($collection->interest_amount,2) }}
|
| Remaining Amount |
₹ {{ number_format($collection->balance_amount,2) }}
|
@stop