{{ __('Date') }}
{{ ucfirst($transaction['datetime']->locale(app()->getLocale())->translatedFormat('l d-m-Y')) }}
{{ str_replace('@TIME@', $transaction['datetime']->locale(app()->getLocale())->translatedFormat('H:i:s'), __('on @TIME@')) }}
{{ __('Amount') }}
{{ tbFormat($transaction['amount']) }}
{{ __('From') }}
{{ __('To') }}
profile
@if ($transaction['from_profile_full_name'] == $transaction['from_profile_name']) {{ $transaction['from_profile_name'] }}
{{ $transaction['from_profile_location'] }}
@else {{ $transaction['from_profile_name'] }}
{{ Illuminate\Support\Str::limit($transaction['from_profile_name'] . ', ' . $transaction['from_profile_location'], 35) }}
@endif
{{ __(ucfirst(strtolower($transaction['from_account']))) }} {{ __('bank account') }}
profile
@if ($transaction['to_profile_full_name'] == $transaction['to_profile_name']) {{ $transaction['to_profile_name'] }}
{{ $transaction['to_profile_location'] }}
@else {{ $transaction['to_profile_name'] }}
{{ Illuminate\Support\Str::limit($transaction['to_profile_full_name'] . ', ' . $transaction['to_profile_location'], 35) }}
@endif
{{ __(ucfirst(strtolower($transaction['to_account']))) }} {{ __('bank account') }}
{{ __('Description') }}
{{ $transaction['description'] }}
@if (!empty($transaction['type_label']))
{{ __('Transaction type') }}
{{ __(ucfirst(strtolower($transaction['type_label']))) }}
@endif
@if ($transaction['creator_user'])
{{ __('Payment executed by') . ' ' }} {{ $transaction['creator_user']['name'] }}
@else
{{ __('Payment executed by') . ' ' }} {{ config('app.name') . ' ' . __('system administration') }}
@endif {{ SimpleSoftwareIO\QrCode\Facades\QrCode::size(60)->errorCorrection('L')->color(17, 24, 39)->generate(route('transaction.show', ['transactionId' => $transactionId])) }}
{{ __('QR code') }} {{ strtolower(__('Transaction # ')) }} {{ $transaction['trans_id'] }}
{!! __('messages.payment.qr_statement', [ 'from_profile' => $transaction['from_profile_name'], 'to_profile' => $transaction['to_profile_name'], 'app_url' => config('app.url'), ]) !!}
{{ SimpleSoftwareIO\QrCode\Facades\QrCode::size(280)->errorCorrection('L')->color(17, 24, 39)->generate(route('transaction.show', ['transactionId' => $transactionId])) }}
{{ route('transaction.show', ['transactionId' => $transactionId]) }} {{ __('Close') }}