subject = $subject ?: 'Your registration is pending!'; $this->user = $user; } public function build() { return $this->markdown('emails.user.pending') ->subject($this->subject) ->with(['user' => $this->user]); } }