Task scheduling can also be done in /bootstrap/app.php using withSchedule:
withSchedule
use Illuminate\Console\Scheduling\Schedule; ->withSchedule(function (Schedule $schedule) { $schedule->command('some:signature')->daily(); })