{{ __('Order ID') }}: {{ $show['order_id'] }}
{{ __('Transaction ID') }}: {{ $show['transaction_id'] }}
{{ __('Payment Method') }}: {{ $show['payment_method'] }}
{{ __('Currency') }}: {{ $show['currency'] }}
{{ __('Payment Status') }}:
@if($show->status ==1)
{{ __('Received') }}
@else
{{ __('Pending') }}
@endif
{{ __('Enroll On') }}: {{ date('jS F Y', strtotime($show['created_at'])) }}
@if($show->enroll_expire != NULL)
{{ __('Enroll Expire') }}: {{ date('jS F Y', strtotime($show['enroll_expire'])) }}
@endif
@if($show->proof != NULL)
{{ __('Download Proof') }}
@endif