From 25df2a5c189ef7256e19bb84e2447c03f8d4c97d Mon Sep 17 00:00:00 2001 From: Mohammad Alavi Date: Sat, 11 Dec 2021 13:35:38 +0330 Subject: [PATCH] fix typo --- .../AppSection/Authentication/Notifications/Welcome.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }