@extends('email.layouts.master') @section('content')

Transaction Successful

₦{{ number_format($amount ?? 0, 2) }}

SUCCESSFUL

Hello {{ ucfirst($username) }},

Here is the receipt for your recent transaction.

@if(isset($charges) && $charges > 0) @endif
Transaction Type {{ $title ?? 'Debit' }}
Description {{ $mes ?? 'Transaction' }}
Amount ₦{{ number_format($amount ?? 0, 2) }}
Charges - ₦{{ number_format($charges, 2) }}
Reference ID {{ $transid ?? 'N/A' }}
Date & Time {{ $date ?? date('d M Y, h:i A') }}
@if(isset($newbal))

New Wallet Balance

₦{{ number_format($newbal, 2) }}
@endif
View Receipt in App
@endsection