- POST /v1/names/register endpoint with wallet RPC integration - WalletRpc service for alias registration via daemon wallet - Blade views for homepage, explorer, names directory, network status - Explorer and Names modules with view namespaces and web controllers - Pool endpoint graceful offline handling - Explorer block detail, aliases, search views Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
449 B
PHP
15 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
|