I want to run a cron just once at a custom date & time entered by the user in a form. What is the best way to do this?
I found that a custom cron can be scheduled in laravel like this
->cron(‘* * * * * *’);
Run the task on a custom Cron schedule.
But I could not find the time format what the * mean.
Or much simpler, can it be done like this by adding the date and time.
->at('28/04/2020 13:00');
How can this be done?