type = $type; $this->data = $data; } /** * Execute the job. * * @return void */ public function handle() { switch ($this->type) { case "code": Mail::send(new SendEmailCode($this->data['email'])); } } }