@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Transaction') }} ID: {{ $id->order_id }}

{{ __('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 }}
{{ __('Transaction Invoice') }}:
{{ __('Download Invoice') }}
@if ($id->gateway == 'BankTransfer')
{{ __('Payment Confirmation') }}:
@if (is_null($id->invoice)) {{ __('User did not upload any payment confirmation yet') }} @else {{ __('Download Confirmation') }} @endif
@endif
@endsection