user = $user; } /** * Build the message. * * @return $this */ public function build() { return $this->text('emails.registration.alert') ->subject('New registration: '.$this->user->first_name.' '.$this->user->last_name) ->with([ 'user' => $this->user, ]); } }