From 130d020986411e4e4fb9aa5c412f44e3ef36a0a8 Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Sat, 22 Nov 2025 11:20:11 +0330 Subject: [PATCH 1/2] add `daysOfMonth` to scheduling --- scheduling.md | 1 + 1 file changed, 1 insertion(+) diff --git a/scheduling.md b/scheduling.md index 3bddd1230e..a4187e1432 100644 --- a/scheduling.md +++ b/scheduling.md @@ -168,6 +168,7 @@ We've already seen a few examples of how you may configure a task to run at spec | `->dailyAt('13:00');` | Run the task every day at 13:00. | | `->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00. | | `->twiceDailyAt(1, 13, 15);` | Run the task daily at 1:15 & 13:15. | +| `->daysOfMonth([1, 10, 20]);` | Run the task every specific days. | | `->weekly();` | Run the task every Sunday at 00:00. | | `->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00. | | `->monthly();` | Run the task on the first day of every month at 00:00. | From 1ca4b14004267694c0a12a966f010cc074678cbf Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 22 Nov 2025 10:52:47 -0600 Subject: [PATCH 2/2] Update daysOfMonth description in scheduling.md Clarified the description for the daysOfMonth method. --- scheduling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduling.md b/scheduling.md index a4187e1432..4773239618 100644 --- a/scheduling.md +++ b/scheduling.md @@ -168,7 +168,7 @@ We've already seen a few examples of how you may configure a task to run at spec | `->dailyAt('13:00');` | Run the task every day at 13:00. | | `->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00. | | `->twiceDailyAt(1, 13, 15);` | Run the task daily at 1:15 & 13:15. | -| `->daysOfMonth([1, 10, 20]);` | Run the task every specific days. | +| `->daysOfMonth([1, 10, 20]);` | Run the task on specific days of the month. | | `->weekly();` | Run the task every Sunday at 00:00. | | `->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00. | | `->monthly();` | Run the task on the first day of every month at 00:00. |