diff --git a/app/Containers/AppSection/Authentication/Notifications/Welcome.php b/app/Containers/AppSection/Authentication/Notifications/Welcome.php index 228b93a3c..79111fd79 100644 --- a/app/Containers/AppSection/Authentication/Notifications/Welcome.php +++ b/app/Containers/AppSection/Authentication/Notifications/Welcome.php @@ -19,7 +19,7 @@ public function via($notifiable): array public function toMail($notifiable): MailMessage { return (new MailMessage()) - ->subject('Welcome to' . config('app.name')) + ->subject('Welcome to ' . config('app.name')) ->line('Thank you for registering ' . $notifiable->name); } }