Sender details
| Sender: |
{{ $transaction->customer->name }} |
| Nationality: |
{{ $transaction->customer->profile->nationality }} |
| ID type: |
{{ $transaction->customer->identificationDetail->type }} |
| ID No: |
{{ $transaction->customer->identificationDetail->number }} |
| Contact No: |
{{ $transaction->customer->contact_number }} |
| D.O.B: |
{{ $transaction->customer->profile->dob ? $transaction->customer->profile->dob->format('d/m/Y') : '' }} |
|
Beneficiary details
| Beneficiary: |
{{ $transaction->beneficiary->name }} |
| Country: |
{{ $transaction->beneficiary->country }} |
| Bank: |
{{ $transaction->beneficiary->bank }} |
| Branch: |
{{ $transaction->beneficiary->bank_branch }} |
| Account No: |
{{ $transaction->beneficiary->account_number }} |
| Relationship: |
{{ $transaction->beneficiary->relationship }} |
|