transaction = $transaction; } public function handle(): void { event(new TransactionSending($this->transaction)); // Notify the customer/vendor $this->transaction->contact->notify(new Notification($this->transaction, config('type.transaction.' . $this->transaction->type . '.email_template'), true)); event(new TransactionSent($this->transaction)); } }