subject = $subject ?: 'Welcome to '.config('app.name').'!'; $this->user = $user; } public function build() { return $this->markdown('emails.user.registered') ->subject($this->subject) ->with(['user' => $this->user]); } }