If you send Laravel Notification and don't specify subject in toMail(), default subject is your notification class name, CamelCased into Spaces.
So, if you have:
1class UserRegistrationEmail extends Notification {2 //3}
Then you will receive an email with subject User Registration Email.