payload_decoded !== null) { return $this->payload_decoded; } $this->payload_decoded = json_decode($this->payload, true); return $this->payload_decoded; } public function getCommand() { return \App\Job::getPayloadCommand($this->getPayloadDecoded()); } public static function retry($job_id) { \Artisan::call('queue:retry', ['id' => $job_id]); } }