| {{ trans('installments.receipt_id') }} |
{{ $receipt->receipt_id }} |
| {{ trans('installments.payment_date') }} |
{{ dt_format($receipt->fee_date) }} |
| {{ trans('installments.payment_name') }} |
{{ $receipt->payment_name }} |
| {{ trans('installments.amount') }} |
{{ money($receipt->total_amount) }} |
| {{ trans('installments.recieve_amount') }} |
{{ money($receipt->recieve_amount) }} |
@if ($receipt->late_day > 0)
| {{ trans('installments.day_late') }} |
{{ $receipt->late_day }} |
@endif
@if ($receipt->fee_late > 0)
| {{ trans('installments.late') }} |
{{ money($receipt->fee_late) }} |
@endif
| {{ trans('installments.reciever_name') }} |
{{ $receipt->first_name }} {{ $receipt->last_name }} |
@if ($receipt->with_doc)
| {{ trans('installments.with_doc') }} |
{{ $receipt->with_doc }} |
@endif