logo

Hikma Properties LTD.

Bangla Bazer, Barisal-8200

Payment Transaction Details

short_name
Customer ID: {{ $invoice->flat->project->short_name }}-{{ $invoice->user->username ?? 'N/A' }} Project Name: {{ $invoice->flat->project->name }}
Customer Name:{{ $invoice->user->name ?? 'N/A' }} {{ $invoice->flat->category->name }} No: {{ $invoice->flat->project->short_name }}-{{ $invoice->flat->no ?? 'N/A' }}
Mobile No.: {{ $invoice->user->phone ?? 'N/A' }} {{ $invoice->flat->category->name }} Size: {{ $invoice->flat->size ?? 'N/A' }} Sqft.
Purchase Date: {{ $invoice->purchase_date }} Remark: {{ $invoice->remark ?? 'N/A' }}

Transactions

@php $runningDue = 0; @endphp @foreach($invoice->transactions as $tran) @php $runningDue += ($tran->price - $tran->paid); @endphp @endforeach
Date Description Price (TK) Received (TK) Dues Amount (TK) Remarks
{{ $tran->date }} {{ $tran->description }} {{ number_format($tran->price, 2) }} TK {{ number_format($tran->paid, 2) }} TK {{ number_format($runningDue, 2) }} TK {{ $tran->remarks }}
@php $totalPrice = $invoice->transactions->sum('price'); $totalPaid = $invoice->transactions->sum('paid'); $totalDue = $totalPrice - $totalPaid; @endphp
Total Price: {{ number_format($totalPrice, 2) }} TK
Total Paid: {{ number_format($totalPaid, 2) }} TK
Remaining Amount: {{ number_format($totalDue, 2) }} TK
Dues Amount: {{ number_format($totalDue, 2) }} TK