lthn.io/app/Mod/Names/Views/available.blade.php
Claude 0899881138
feat(lthn.io): name registration API, Blade views, wallet RPC
- 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>
2026-04-03 23:04:27 +01:00

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 &rarr;</a>
<div style="margin-top: 2rem;">
<a href="/names">&larr; Back to directory</a>
</div>
</div>
@endsection