Laravel 7/6 Cron Job Scheduling
Laravel 06-Nov-2020

Laravel 7/6 Cron Job Scheduling

If you are looking, laravel custom cron job schedule, laravel run cron job manually, laravel cron job cpanel, laravel run schedule manually, laravel scheduler every second, how to run cron job in laravel. So this tutorial will help you.

In this laravel custom cron job or task scheduling tutorial, Here you will learn how to create cron job and how to test cronjob in the localhost and web server. We will also discuss how to set a cronjob on the live server.

Generally, laravel cronjob is task scheduling. it means it will work according to the scheduled time. If you want to schedule tasks that will be executed every day automatically that is very helpful for you. Laravel cronjob is reduced manually working time.

Laravel CronJob Task Scheduling Example

Follow the following steps then create and schedule cron job on localhost or server in laravel web applications:

  • Create Command Class
  • Implement Logic
  • Register Command
  • Test in Localhost
  • Laravel Set CronJob Live Server

Step 1: Create Command Class

Go to your project root directory using the below command :

cd your project name 

Next, We need to create command class run by below command in command prompt :

php artisan make:command TodayUsers

Step 2: Implement Logic

After run this above command, it will create a new class name TodayUsers.php in app/Console/Commands/ folder. So go to app/Console/Commands/TodayUsers.php and implement your logic here :

<?php
 
namespace App\Console\Commands;
 
use Illuminate\Console\Command;
 
class TodayUsers extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'TodayUsers:check';
 
    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'This laravel cronjob is used to check how many users registered today';
 
    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }
 
    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
            $count = \DB::table('users')
            ->whereDate('created_at', '=', date('Y-m-d'))
            ->count();
 
            echo "Today $count users registered";
    }
}

Step 3: Register Command

After successfully implement your logic in TodayUsers.php file, we need to register this command in kernel.php file with task scheduling :

lets open app/Console/Kernel.php/ and schedule the task.

<?php
 
namespace App\Console;
 
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 
class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        Commands\TodayUsers::class,
    ];
 
    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
                $schedule->command('TodayUsers:check')
                 ->everyMinute();
    }
 
    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__.'/Commands');
 
        require base_path('routes/console.php');
    }
}

In Kernel.php file we will schedule the task to be done, when it will be the command excute(run).
In this example we will schedule the task excute for every minute. But you can schedule accordingly.

Step 4: Test in Localhost

After scheduling the task, we will excute this above in localhost for testing.

Open your command prompt and run the below command :

php artisan TodayUsers:check

Step 5: Laravel Set CronJob on live server

If you want to schedule the task on live server use the below command :

* * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
In Laravel More Cronjob Schedule Options are available. If you want to know more click here

->cron(‘* * * * * *’); – Run the task on a custom Cron schedule

->everyMinute(); – Run the task every minute

->everyFiveMinutes(); – Run the task every five minutes

->hourly(); – Run the task every hour

->daily(); – Run the task every day at midnight

->dailyAt(’13:00′); – Run the task every day at midnight

->twiceDaily(1, 13); – Run the task daily at 1:00 & 13:00

->weekly(); – Run the task weekly

->monthly(); -Run the task every month

->monthlyOn(4, ’15:00′) – Run the task every month on the 4th at 15:00

->quarterly(); – Run the task every quarter

->yearly(); – Run the task every year

->timezone(‘America/New_York’); – Set the timezone Addiitional schedule constraints are listed below,

->weekdays(); – Limit the task to weekdays

->sundays(); – Limit the task to Sunday

->mondays(); – Limit the task to Monday

->tuesdays(); – Limit the task to Tuesday

->wednesdays(); – Limit the task to Wednesday

->thursdays(); – Limit the task to Thursday

->fridays(); – Limit the task to Friday

->saturdays(); – Limit the task to Saturday

Conclusion

In this laravel cronjob tutorial, we have successfully test created cronjob and we have also learned how to set cronjob on live server .