@extends('layouts.admin') @section('title', 'View Transaction') @section('content')
| Transaction ID: | {{ $transaction->id }} |
|---|---|
| Payment ID: | {{ $transaction->transaction_id ?? 'N/A' }} |
| Status: | {{ ucfirst($transaction->status) }} |
| Amount: | {{ currency_symbol(config_value('store_currency', 'GBP')) }}{{ number_format($transaction->amount, 2) }} |
| IP Address: | {{ $transaction->ip_address }} |
| Created At: | {{ $transaction->created_at->format('M d, Y H:i:s') }} |
| Updated At: | {{ $transaction->updated_at->format('M d, Y H:i:s') }} |
| Name: | {{ $transaction->user->name }} |
|---|---|
| Steam ID: | {{ $transaction->user->steamid }} |
| Package: | {{ $transaction->package->name }} |
|---|---|
| Price: | {{ currency_symbol(config_value('store_currency', 'GBP')) }}{{ number_format($transaction->package->price, 2) }} |
| Type: | {{ ucfirst($transaction->package->type) }} |
{{ json_encode(is_string($transaction->paypal_data) ? json_decode($transaction->paypal_data) : $transaction->paypal_data, JSON_PRETTY_PRINT) }}