info('Checking Traefik versions on all servers...'); try { CheckTraefikVersionJob::dispatch(); $this->info('Traefik version check job dispatched successfully.'); $this->info('Notifications will be sent to teams with outdated Traefik versions.'); return Command::SUCCESS; } catch (\Exception $e) { $this->error('Failed to dispatch Traefik version check job: '.$e->getMessage()); return Command::FAILURE; } } }