I'm trying to make for my backend to send a notification each day that that comes closer to an indicated date.
For example, if my user adds the date "13-07-2020", he should be getting a notification "your deadline is in 1 day!" (as today is 12).
I've read in the documentation of Laravel the section about "Task Scheduling", but I'm not sure how to implement it this way, each user will be getting its own notifications.
How is it possible to accomplish this? The documentation states: "Laravel's command scheduler allows you to fluently and expressively define your command schedule within Laravel itself." So, it makes me believe that it is just for commands.