Transaction Information
|
Type:{{$transaction->type ?? ""}}
|
Category: {{ $transaction->category ?? "" }}
|
|
Reference: {{$transaction->reference}}
|
|
|
Method:{{$transaction->channel ?? ""}}
|
Refunded: {{$transaction->refunded == 1 ? "True" : "False"}}
|
Amount: N {{number_format($transaction->amount,2)}}
|
|
Previous Balance: N {{number_format($transaction->previous_balance ?? 0)}}
|
Previous Balance: N {{number_format($transaction->previous_balance ?? 0)}}
|
|
Note: {{ $transaction->note }}
|
|
|
Date: {{ \Carbon\Carbon::parse($transaction->created_at)->format('d M Y') }}
|
|