@php $payload = $data['payload'] ?? []; dd($payload); @endphp

Order Confirmation

Dear {{ $payload['customer']['name'] ?? 'Customer' }},

Thank you for your order! Your payment for Order #{{ $payload['order']['id'] ?? 'N/A' }} has been received successfully.

Phone: {{ $payload['customer']['phone'] ?? 'N/A' }}

Order Summary (Invoice: {{ $payload['invoice']['invoice_id'] ?? '' }})

@if(isset($payload['items']) && is_array($payload['items'])) @foreach($payload['items'] as $item) @endforeach @endif
Item Qty Price Subtotal
{{ $item['name'] }} {{ $item['qty'] }} {{ $payload['order']['currency'] ?? '' }} {{ number_format($item['price'], 2) }} {{ $payload['order']['currency'] ?? '' }} {{ number_format(($item['qty'] * $item['price']), 2) }}
Grand Total: {{ $payload['order']['currency'] ?? '' }} {{ number_format($payload['order']['total'] ?? 0, 2) }}
Status: Paid
@if(!empty($payload['invoice']['download_url'])) Download Invoice @endif

Have Any Questions?

Check our FAQ or support page for more information.

© {{ date('Y') }} Pippa Notification Service. All rights reserved.