'nullable|boolean', 'settings.smtp.host' => 'required', 'settings.smtp.port' => 'required|numeric', 'settings.smtp.encryption' => 'nullable', 'settings.smtp.username' => 'nullable', 'settings.smtp.password' => 'nullable', 'settings.smtp.timeout' => 'nullable', 'settings.smtp.test_recipients' => 'nullable', 'settings.smtp.from_address' => 'required|email', 'settings.smtp.from_name' => 'required', ]; protected $validationAttributes = [ 'settings.smtp.from_address' => 'From Address', 'settings.smtp.from_name' => 'From Name', 'settings.smtp.recipients' => 'Recipients', 'settings.smtp.host' => 'Host', 'settings.smtp.port' => 'Port', 'settings.smtp.encryption' => 'Encryption', 'settings.smtp.username' => 'Username', 'settings.smtp.password' => 'Password', 'settings.smtp.test_recipients' => 'Test Recipients', ]; public function mount() { $this->decrypt(); } public function instantSave() { try { $this->submit(); } catch (\Exception $e) { $this->settings->smtp->enabled = false; $this->validate(); } } public function test_email() { Notification::send($this->settings, new TestEmail); $this->emit('success', 'Test email sent.'); } private function decrypt() { if (data_get($this->settings, 'smtp.password')) { try { $this->settings->smtp->password = decrypt($this->settings->smtp->password); } catch (\Exception $e) { } } } public function submit() { $this->resetErrorBag(); $this->validate(); if ($this->settings->smtp->password) { $this->settings->smtp->password = encrypt($this->settings->smtp->password); } else { $this->settings->smtp->password = null; } $this->settings->smtp->test_recipients = str_replace(' ', '', $this->settings->smtp->test_recipients); $this->settings->save(); $this->decrypt(); } }