components([ Section::make('Search Engine Optimization') ->description('Atur bagaimana website Anda muncul di mesin pencari.') ->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()->send(); } }