tagId = $tagId; } /** * Execute the job. * * @return void */ public function handle() { // Send the email notification Mail::to(timebank_config('mail.content_admin.email'))->send(new TagAddedMail($this->tagId)); } }