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

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

{{ __('Transaction Date') }}:
{{ date_format($id->created_at, 'd M Y, H:i:s') }}
{{ __('Total') }}:
{!! config('payment.default_system_currency_symbol') !!}{{ ucfirst($id->price) }}
{{ __('Status') }}:
{{ ucfirst($id->status) }}
{{ __('Plan Name') }}:
{{ ucfirst($id->plan_name) }}
{{ __('Payment Gateway') }}:
{{ $id->gateway }}
@endsection