@if(isset($item))

{{ str_replace(' ', ' ', ucwords(str_replace('.', ' ', $item->event ?? ""))) }}

{{ get_amount($item->data->amount ?? 0,$item->card_currency,get_wallet_precision()) }}

{{__("web_trx_id")}}
{{ $item->transaction_id ?? '' }}
{{ __("cardI d") }}
{{ $item->cardId ?? '' }}
{{ __("Reference") }}
{{ $item->data->reference ?? "" }}
{{ __("Charged Amount") }}
{{ get_amount($item->data->chargedAmount ?? 0,$item->card_currency,get_wallet_precision()) }}
{{ __("Narration") }}
{{ $item->data->narrative ?? ""}}
{{ __("Status") }}
{{ ucwords($item->data->status ?? "" )}}
{{ __("Time & Date") }}
{{ \Carbon\Carbon::parse($item->data->createdAt)->format('d-m-y h:i:s A') }}
@endif