document = $document; $this->notify = $notify; $this->description = $description; } /** * Execute the job. * * @return DocumentHistory */ public function handle() { $description = $this->description ?: trans_choice('general.payments', 1); $document_history = DocumentHistory::create([ 'company_id' => $this->document->company_id, 'type' => $this->document->type, 'document_id' => $this->document->id, 'status' => $this->document->status, 'notify' => $this->notify, 'description' => $description, ]); return $document_history; } }