{{ $paymentInfo['item_name'] ? $paymentInfo['item_name'] : "" }}
@php
$amount = isset($paymentInfo) ? $paymentInfo['amount'] : 0;
@endphp
{{ moneyFormat(optional($merchant->currency)->code, formatNumber($amount, optional($merchant->currency)->id)) }}
{{ __('Merchant ID') }}: #{{ $paymentInfo['merchant'] ? $paymentInfo['merchant'] : "" }}
{{ __('Order ID') }}: #{{ $paymentInfo['order_no'] ? $paymentInfo['order_no'] : "" }}
@if ($feeBearer == 'User')
{{ __('Transaction charge : :x', ['x' => moneyFormat(optional($merchant->currency)->code, formatNumber($totalFee, optional($merchant->currency)->id))]) }}
@endif