'boolean', 'discord_webhook_url' => 'encrypted', 'deployment_success_discord_notifications' => 'boolean', 'deployment_failure_discord_notifications' => 'boolean', 'status_change_discord_notifications' => 'boolean', 'backup_success_discord_notifications' => 'boolean', 'backup_failure_discord_notifications' => 'boolean', 'scheduled_task_success_discord_notifications' => 'boolean', 'scheduled_task_failure_discord_notifications' => 'boolean', 'docker_cleanup_discord_notifications' => 'boolean', 'server_disk_usage_discord_notifications' => 'boolean', 'server_reachable_discord_notifications' => 'boolean', 'server_unreachable_discord_notifications' => 'boolean', 'server_patch_discord_notifications' => 'boolean', 'discord_ping_enabled' => 'boolean', ]; public function team() { return $this->belongsTo(Team::class); } public function isEnabled() { return $this->discord_enabled; } public function isPingEnabled() { return $this->discord_ping_enabled; } }