uuid = $uuid; $this->lang = $lang; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.invite.'.$this->lang) ->with([ 'url' => env('DASHBOARD_URL').'/anonymous/users/sign-up/'.$this->uuid, ]); } }