user = $user; $this->setMailable( 'Welcome to '.config('app.name').'!', 'notifications.mail.user.registered', ['user' => $this->user] ); } public function toArray($notifiable) { return [ 'user_id' => $this->user->id, ]; } }