Support the ongoing development of Laravel.io →
Installation Configuration Jobs
Last updated 1 year ago.
0

There is no cron job in Windows but if you use Laravel Homestead when you're developing locally this documentation will help you https://laravel.com/docs/5.3/homestead#configuring-cron-schedules

0

Change your custom command path you have makes like given below

protected $commands = [
   Commands\CustomCommand::class,
];

But You want to make like this

protected $commands = [
   \App\Console\Commands\CustomCommand::class,
];
Last updated 6 years ago.
0

Follow this guide on Laravel cron jobs, for scheduling the cron correctly. If you have created a custom artisan command, you will have to define it correctly in your code.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

moschel26 moschel26 Joined 21 Dec 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.