# Trust {{ ucfirst($type ?? 'Transaction') }} Notification Hello {{ $transaction?->client?->name ?? 'Client' }}, Your trust account has a new {{ $type ?? 'transaction' }}. Type: **{{ ucfirst($type ?? ($transaction?->type ?? 'transaction')) }}** Amount: **{{ system_base_currency() }} {{ number_format((float) ($transaction?->amount ?? 0), 2) }}** Date: **{{ $transaction?->transaction_date ? \Carbon\Carbon::parse($transaction->transaction_date)->format('D, d M Y') : now()->format('D, d M Y') }}** Reference: **{{ $transaction?->reference ?: 'N/A' }}** @if($transaction?->description) Description: {{ $transaction->description }} @endif Thanks,
{{ config('app.name') }}