@php $appName = config('app.name'); $appName = json_decode($appName) ?? $appName; $defaultTitle = sprintf('Welcome to %s', $appName); $defaultText = 'Website Under Construction'; $title = \App\Models\Config::get('homepage.under-construction-title'); $text = \App\Models\Config::get('homepage.under-construction-text'); @endphp

{{ $title ?? $defaultTitle }}

{{ $text ?? $defaultText }}