From 06e6e458bf0d722ac1c089aae8c8ecfddb638a2f Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sat, 19 Jul 2025 17:53:17 +0300 Subject: [PATCH] Fix punctuation --- notifications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications.md b/notifications.md index 38813e0b743..da86bccc744 100644 --- a/notifications.md +++ b/notifications.md @@ -145,7 +145,7 @@ public function via(object $notifiable): array ### Queueing Notifications > [!WARNING] -> Before queueing notifications you should configure your queue and [start a worker](/docs/{{version}}/queues#running-the-queue-worker). +> Before queueing notifications, you should configure your queue and [start a worker](/docs/{{version}}/queues#running-the-queue-worker). Sending notifications can take time, especially if the channel needs to make an external API call to deliver the notification. To speed up your application's response time, let your notification be queued by adding the `ShouldQueue` interface and `Queueable` trait to your class. The interface and trait are already imported for all notifications generated using the `make:notification` command, so you may immediately add them to your notification class: