@extends('documents.layout') @section('content')
CUSTOMER INFORMATION
Name:
{{ $customer['name'] }}
Email:
{{ $customer['email'] }}
TRANSACTION INFORMATION
Transaction ID:
#{{ $transaction_id }}
Transaction Date:
{{ $transaction_date }}
@if(isset($reference) && $reference)
Reference:
{{ $reference }}
@endif
CREDIT DETAILS
Description Amount
{{ $description }} @if($is_complementary)
(Complementary Credits) @endif
{{ number_format($amount, 2) }}
Total Credit:
{{ number_format($amount, 2) }}
Wallet Balance After Credit:
{{ number_format($balance_after, 2) }}
CREDITS ADDED TO WALLET

This credit note confirms that the above amount has been added to your wallet balance. @if($is_complementary) These are complementary credits that may have usage restrictions. @endif

You can use your wallet credits to pay for services on our platform.

@endsection