@extends('mail.layout')
@section('mainsection')
Donation Receipt
Receipt No:{{$donation->id}}
{{env('APP_NAME')}}
ABN: {{ getSettingByKey('abn') }}
{{config('app.address')}}
{{config('app.email')}}
{{config('app.contact_number')}}
|
Donated By |
{{$donation->full_name}} |
@if($donation->member_number)
Member Number |
{{$donation->member_number}} |
@endif
@if($donation->contact_number)
Contact Number |
{{$donation->contact_number}} |
@endif
@if($donation->email)
Email |
{{$donation->email}} |
@endif
Donation Amount |
{{$donation->currency.' $'.$donation->amount}}
|
Date Of Donation |
{{$donation->created_at->format('d-m-Y')}}
|
Payment Method |
{{$donation->payment_method}}
|
@if($donation->remarks)
Description of Donation |
{{$donation->remarks}} |
@endif
Thank you for your generiousity. We appreciate your support
Payment made via Receipt will be verified manually and
confirmation email will be sent again after verification.
|
@endsection