'required', 'command' => 'required', ]; public function mount($servers) { $this->servers = $servers; $this->server = $servers[0]->uuid; } public function runCommand() { try { $this->validate(); $activity = remote_process([$this->command], Server::where('uuid', $this->server)->first()); $this->emit('newMonitorActivity', $activity->id); } catch (\Exception $e) { return general_error_handler($e); } } }