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

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

{{ __('Transaction Date') }}:
{{ $id->created_at }}
{{ __('Plan Type') }}:
{{ ucfirst($id->plan_type) }}
{{ __('Price') }} ({{ config('payment.default_system_currency') }}):
{!! config('payment.default_system_currency_symbol') !!}{{ ucfirst($id->amount) }}
{{ __('Package Name') }}:
{{ $id->plan_name }}
{{ __('Characters Included') }}:
{{ number_format($id->characters) }}
{{ __('Paid By') }}:
{{ $id->gateway }}
{{ __('User Full Name') }}:
{{ $user->name }}
{{ __('User Email') }}:
{{ $user->email }}
{{ __('User Country') }}:
{{ $user->country }}
{{ __('Discount Applied') }} ({{ config('payment.default_system_currency') }}):
{!! config('payment.default_system_currency_symbol') !!}{{ $id->discount }}
{{ __('Status') }}:
{{ $id->status }}
@method('PUT') @csrf
{{ __('Update Payment Status') }} ({{ __('Required') }})
@error('payment-status')

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

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