{{ __('Transaction Date') }}:
{{ date_format($id->created_at, 'd M Y, H:i A') }}
{{ __('Total Price') }}:
{!! config('payment.default_system_currency_symbol') !!}{{ ucfirst($id->price) }}
{{ __('Payment Status') }}:
{{ __(ucfirst($id->status)) }}
{{ __('Plan Name') }}:
{{ ucfirst($id->plan_name) }}
{{ __('Words Included') }}:
{{ number_format($id->words) }}
{{ __('Payment Gateway') }}:
{{ $id->gateway }}
{{ __('Payment Frequency') }}:
{{ ucfirst($id->frequency)}}
{{ __('User Name') }}:
{{ $user->name }}
{{ __('User Email') }}:
{{ $user->email }}
{{ __('Country') }}:
{{ $user->country }}
@if ($id->gateway == 'BankTransfer')
{{ __('Payment Confirmation') }}:
@if (is_null($id->invoice))
{{ __('User did not upload any payment confirmation yet') }}
@else
{{ __('Download Confirmation') }}
@endif
@endif