subject = $subject ?: 'Your registration has been denied'; $this->user = $user; } public function build() { return $this->markdown('emails.user.rejected') ->subject($this->subject) ->with(['user' => $this->user]); } }