Default Email Subject in Laravel Notifications
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:
class UserRegistrationEmail extends Notification { // ...
Then you will receive an email with subject “User Registration Email”.