Why not just put the code you want executed in there instead of a external file?
Jan 13, 2022
5
Level 5
How do I run a php file inside a schedule task?
Kernel.php:
$schedule->call(function () {
// run a php file here
})->daily();
Level 102
@ilex01 have you set up a cron job to call it? https://laravel.com/docs/8.x/scheduling#running-the-scheduler
Please or to participate in this conversation.