components([ Section::make(fn () => CheerfulNotification::getByKey('settings.seo.section.title')) ->description(fn () => CheerfulNotification::getByKey('settings.seo.section.description')) ->schema([ TextInput::make('title') ->label('SEO Title') ->placeholder('simedkom') ->autofocus() ->autocomplete(false) ->helperText('Judul yang muncul di tab browser dan hasil pencarian.'), Textarea::make('description') ->label('SEO Description') ->placeholder('...') ->autocomplete(false) ->helperText('Deskripsi singkat website Anda.'), TextInput::make('keywords') ->label('SEO Keywords') ->placeholder('keyword1, keyword2, keyword3') ->autocomplete(false) ->helperText('Gunakan koma untuk memisahkan kata kunci.'), ]) ->columnSpanFull(), ]); } public function getSavedNotification(): ?Notification { return CheerfulNotification::update(); } }