{{ config('app.name') }}
{{ __('Hi :username', ['username' => $username]) }}
{{ ($text ?? null) ? __($text) : __('You have received a new payment request for :') }}
@foreach($items as $k => $item)
{{ mb_ucfirst($item['name']) }}
{{ $item['value'] }}
@endforeach
{{ __('Total') }}
{{ price($total_amount, false, true, 2, 'code', false, $currency)}}
@if($custom_amount ?? null)
{{ __('You will pay only') }}
{{ price($custom_amount, false, true, 2, 'code', false, $currency) }}
@endif
@if($exchange_rate != 1)
{{ __('Exchange rate') }} : {{ $exchange_rate }}
@endif

{{ __('Note') }} : {{ __("If the button doesn't work, please try with the following link :") }}

{!! urldecode($short_link) !!}