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

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

{{ __('Transaction Date') }}:
{{ $id->created_at }}
{{ __('Plan Type') }}:
{{ ucfirst($id->plan_type) }}
{{ __('Amount') }} ({{ $id->currency }}):
{{ ucfirst($id->amount) }}
{{ __('Plan Name') }}:
{{ $id->plan_name }}
{{ __('Characters Included') }}:
{{ number_format($id->characters) }}
{{ __('Paid By') }}:
{{ $id->gateway }}
{{ __('Discount Applied') }} ({{ $id->currency }}):
{{ $id->discount }}
{{ __('Status') }}:
{{ $id->status }}
@endsection