@extends('layouts.app') @section('title', __('Transaction #:id', ['id' => $transaction->id])) @section('content') @php $statusColors = [ 'pending' => 'bg-amber-100 text-amber-800', 'processing' => 'bg-blue-100 text-blue-800', 'succeeded' => 'bg-emerald-100 text-emerald-800', 'failed' => 'bg-rose-100 text-rose-800', 'canceled' => 'bg-slate-100 text-slate-700', 'refunded' => 'bg-violet-100 text-violet-800', ]; @endphp
{{ $transaction->created_at->format('Y-m-d H:i') }}
{{ __('No subscription linked yet.') }}
@endif{{ json_encode($transaction->metadata, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) }}