@extends('emails.layout') @section('title', 'Payment Received') @section('content')
Hi {{ $user->name }},
We've received your payment. Thank you!
Payment Details:
Amount: {{ $transaction->currency ?? 'USD' }} {{ number_format($transaction->amount, 2) }}
Transaction ID: {{ $transaction->transaction_id }}
Date: {{ $transaction->transaction_date->format('M j, Y g:i A') }}
Payment Method: {{ $transaction->payment_method }}
Your build credits have been replenished for this billing cycle.
Best regards,
The {{ $appName ?? config('app.name') }} Team