bankAccount = $bankAccount; $this->bank_name = $bank_name; $this->user = $user; } /** * Build the message. * * @return $this */ public function build() { return $this->subject('Création de compte bancaire en attente de validation') ->view('emails.bank_account_created') ->with(['bankAccount' => $this->bankAccount, 'bank_name' => $this->bank_name, 'user' => $this->user]); } }