app->bind( 'Illuminate\Contracts\Auth\Registrar', 'App\Services\Registrar' ); } public function boot() { // Please note the different namespace // and please add a \ in front of your classes in the global namespace \Event::listen('cron.collectJobs', function() { \Cron::add('example1', '* * * * *', function() { $this->index(); return 'No'; }); \Cron::add('example2', '*/2 * * * *', function() { // Do some crazy things successfully every two minute return null; }); \Cron::add('disabled job', '0 * * * *', function() { // Do some crazy things successfully every hour }, false); }); } }