name = $ticket->user->name; $this->email = $ticket->user->email; $this->message = $message; $this->type = $ticket->type; $this->id = $ticket->id; } /** * Build the message. * * @return $this */ public function build() { return $this->view('support-ticket') ->from('donotreply@trendplays.com') ->subject("Ticket: $this->id, $this->type"); } }