$config->contentDisclaimer !== '', ]); } /** * Display the disclaimer page with the configured markdown content. */ public function disclaimer(ConfigService $config): Response { return Inertia::render('Disclaimer', [ 'content' => $config->contentDisclaimer, ]); } }