user = $user; } /** * Build the message. * * @return $this */ public function build() { return $this->from('portal@bricooli.fr') ->markdown('mail.new-user-invitation') ->with([ 'user' => $this->user, ]); } }