| Receipt # |
{{ $invoice->id }} |
Date |
{{ date('M d, Y',strtotime($invoice->transection_date)) }} |
| Donor Name |
{{ $invoice->donor->first_name.' '.$invoice->donor->last_name }} |
Donor ID |
{{ '#'.$invoice->donor->id }} |
| Address |
{{ $invoice->donor->street_number.', '.$invoice->Donor->city.', '.$invoice->Donor->state.' '.$invoice->Donor->zip_code }} |
Phone no |
{{ $invoice->donor->phone_no ?? 'N/A' }} |
| Amount |
${{ number_format($invoice->transaction_amount,2) }} |
Donation For |
{{ $invoice->TransectionType->name }} |
| Comment |
{{ $invoice->remarks }} |
Paid By |
{{ $invoice->PaymentType->name }} |