Modules: - Chain: daemon RPC client (DaemonRpc singleton, cached queries) - Explorer: block browser, tx viewer, alias directory, search, stats API - Names: .lthn TLD registrar portal (availability check, lookup, directory) - Trade: scaffold (DEX frontend + API) - Pool: scaffold (mining pool dashboard) Replaces 5 Node.js containers (5.9GB) with one FrankenPHP app. Built on CorePHP framework pattern from host.uk.com. Co-Authored-By: Charon <charon@lethean.io>
27 lines
499 B
PHP
27 lines
499 B
PHP
<x-mail::layout>
|
|
{{-- Header --}}
|
|
<x-slot:header>
|
|
<x-mail::header :url="config('app.url')">
|
|
{{ config('app.name') }}
|
|
</x-mail::header>
|
|
</x-slot:header>
|
|
|
|
{{-- Body --}}
|
|
{!! $slot !!}
|
|
|
|
{{-- Subcopy --}}
|
|
@isset($subcopy)
|
|
<x-slot:subcopy>
|
|
<x-mail::subcopy>
|
|
{!! $subcopy !!}
|
|
</x-mail::subcopy>
|
|
</x-slot:subcopy>
|
|
@endisset
|
|
|
|
{{-- Footer --}}
|
|
<x-slot:footer>
|
|
<x-mail::footer>
|
|
© {{ date('Y') }} {{ config('app.name') }}. {{ __('All rights reserved.') }}
|
|
</x-mail::footer>
|
|
</x-slot:footer>
|
|
</x-mail::layout>
|