- 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>
14 lines
544 B
PHP
14 lines
544 B
PHP
@extends('lethean::layout')
|
|
|
|
@section('title', $name . '.lthn — Available')
|
|
|
|
@section('content')
|
|
<div class="section" style="text-align: center; padding: 4rem 0;">
|
|
<h2><span style="color: var(--green);">{{ $name }}.lthn</span> is available!</h2>
|
|
<p style="color: var(--muted); margin: 1rem 0;">This name has not been registered yet.</p>
|
|
<a href="/names/register" class="api-link">Register this name →</a>
|
|
<div style="margin-top: 2rem;">
|
|
<a href="/names">← Back to directory</a>
|
|
</div>
|
|
</div>
|
|
@endsection
|