task = $task; } /** * Execute the job. * * @throws Exception */ public function handle(): void { $this->task->setComputedAttributeValue('spent_time'); if ($this->task->isDirty()) { $this->task->save(); } } }