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

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

{{ __('Transaction Date') }}:
{{ $id->created_at }}
{{ __('Plan Type') }}:
{{ ucfirst($id->frequency) }}
{{ __('Price') }} ({{ config('payment.default_system_currency') }}):
{!! config('payment.default_system_currency_symbol') !!}{{ ucfirst($id->price) }}
{{ __('Plan Name') }}:
{{ $id->plan_name }}
{{ __('Paid By') }}:
{{ $id->gateway }}
{{ __('User Name') }}:
{{ $user->name }}
{{ __('User Email') }}:
{{ $user->email }}
{{ __('Country') }}:
{{ $user->country }}
{{ __('Status') }}:
{{ $id->status }}
@endsection