'dashboard', 'domains/system/seo.settings.title' => ''], context: 'user')] #[Seo(title: 'domains/system/seo.settings.title', description: 'domains/system/seo.settings.description', keywords: 'domains/system/seo.settings.keywords')] class extends Component { use HasLayoutDataAttributes, HasSeoAttributes, WithFilePond, WithToast; public array $form = []; public function mount(): void { if (! empty($this->settingsValue)) { $this->form = $this->settingsValue; } } #[Computed] public function settings(): array { return SystemSettingKey::section(); } #[On('setting-updated')] #[Computed] public function settingsValue(): array { return SystemSettings::all()->pluck('translated_value', 'key')->toArray(); } };