@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) }}
{{ __('Payment Gateway') }}:
{{ $id->gateway }}
{{ __('Payment Frequency') }}:
{{ ucfirst($id->frequency) }}
{{ __('User Name') }}:
{{ $user->name }}
{{ __('User Email') }}:
{{ $user->email }}
{{ __('Country') }}:
{{ $user->country }}
@method('PUT') @csrf
{{ __('Payment Confirmation') }}:
@if (is_null($id->invoice)) {{ __('User did not upload any payment confirmation yet') }} @else {{ __('Download Confirmation') }} @endif
{{ __('Update Payment Status') }}
@error('payment-status')

{{ $errors->first('payment-status') }}

@enderror
{{ __('Return') }}
@endsection