name('account.delete.confirm'); Route::get('/account/delete/{token}/cancel', CancelDeletion::class)->name('account.delete.cancel'); // Host Hub - Customer panel (protected by auth) // Only accessible from admin domains (hub.*, www.*, hestia.*, localhost) // Most Hub routes are now registered via their respective module Boot.php files: // - SocialHost routes: app/Mod/Social/Boot.php // - BioHost routes: app/Mod/Bio/Boot.php // - TrustHost routes: app/Mod/Trust/Boot.php // Workspace public pages (served from subdomains like social.host.uk.com) Route::get('/workspace/{workspace?}', WorkspaceHome::class)->name('workspace.show'); /* |-------------------------------------------------------------------------- | BioLinks Public Routes |-------------------------------------------------------------------------- | | Public bio routes are registered via Bio module (app/Mod/Bio/routes/web.php) | Served from: bio.host.uk.com, lnktr.fyi, custom domains | */ // Dev-only test routes if (app()->isLocal()) { Route::get('/dev/hlcrf-test', fn () => view('core::examples.hlcrf-test'))->name('dev.hlcrf-test'); }