You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> imagine a job portal where if an application gets rejected the app needs to notify the applicant via automated email after 3 days of that event, during that period the admin may change his mind and prevent the auto mail sending or modify the mail content
9
11
10
12
For any scheduled task we can directly use Laravel's [queue](https://laravel.com/docs/8.x/queues) but what if that task needs to be modified is some way before it gets executed?
@@ -13,7 +15,6 @@ This package stores all the tasks that needs to run on a future date & time / re
13
15
14
16
It uses Laravel's task [scheduling](https://laravel.com/docs/8.x/scheduling) to figure out & handle the tasks that needs to be run for the current day at the specified time for that task, and sends the task payload to a [receiver class](https://github.com/devsrv/laravel-scheduled-model-action#step---3--receiver-class-gets-task-payload--passes-the-task-to-classes-based-on-task-action-for-this-example-sending-email) of your app ([configurable](https://github.com/devsrv/laravel-scheduled-model-action#step---3--receiver-class-gets-task-payload--passes-the-task-to-classes-based-on-task-action-for-this-example-sending-email)). So how to perform the task is totally up to you.
15
17
16
-
17
18
### Installation
18
19
19
20
```shell
@@ -292,4 +293,4 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
292
293
293
294
## 👋🏼 Say Hi!
294
295
Leave a ⭐ if you find this package useful 👍🏼,
295
-
don't forget to let me know in [Twitter](https://twitter.com/srvrksh)
296
+
don't forget to let me know in [Twitter](https://twitter.com/srvrksh)
0 commit comments