16 lines
449 B
PHP
16 lines
449 B
PHP
|
|
@extends('lethean::layout')
|
||
|
|
|
||
|
|
@section('title', 'Transaction')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<div class="section">
|
||
|
|
<h2>Transaction Details</h2>
|
||
|
|
<div class="card" style="margin-top: 1rem;">
|
||
|
|
<pre style="overflow-x: auto; font-size: 0.8rem; color: var(--muted);">{{ json_encode($tx, JSON_PRETTY_PRINT) }}</pre>
|
||
|
|
</div>
|
||
|
|
<div style="margin-top: 1.5rem;">
|
||
|
|
<a href="/explorer">← Back to explorer</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@endsection
|