uuid = $uuid; $this->lang = $lang; if($dashboard && !empty($dashboard)){ $this->dashboard_url = $dashboard; }else{ $this->dashboard_url = config('mint.server.dashboard_base_path'); } } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.reset_password.'.$this->lang) ->with([ 'url' => $this->dashboard_url.'/anonymous/users/reset-password/'.$this->uuid, ]); } }