{{ getColumnValue($transInfo?->app?->merchant?->user) }}'s {{ getColumnValue($transInfo?->app?->merchant, 'business_name') }}
{{ __('You are about to make payment via :x', ['x' => $transInfo->payment_method]) }}
{{ __('Transaction Details') }}
{{ __('Subtotal') }}
{{ moneyFormat($transInfo->currency, formatNumber($transInfo->amount, $currencyId)) }}
@if ($transInfo->app?->merchant?->merchant_group?->fee_bearer == 'User')
{{ __('Fees') }}
{{ moneyFormat($transInfo->currency, formatNumber($fees, $currencyId)) }}
{{ __('Fee Beared') }}
{{ $transInfo->app?->merchant?->merchant_group?->fee_bearer }}
@endif
{{ __('Total') }}
@if ($transInfo->app?->merchant?->merchant_group?->fee_bearer == 'User')
({{ __('With Fees') }})
@endif
{{ $transInfo->app?->merchant?->merchant_group?->fee_bearer == 'Merchant' ? moneyFormat($transInfo->currency, formatNumber($transInfo->amount, $currencyId)) : moneyFormat($transInfo->currency, formatNumber($transInfo->amount + $fees, $currencyId)) }}