ItSolutionStuff.com

How to Schedule Laravel Cron Job Based on Timezone?

By Hardik Savani • December 11, 2024
Laravel

In this post, I will show you how to schedule command based on timezone in laravel application.

By default, Laravel's scheduled commands use the timezone specified in the application configuration file. However, you can also configure cron jobs to run based on a specific timezone. Here are two methods to set up cron jobs with a timezone:

Setup Cron Job:

You can see the following URL to setup cron job in laravel:

Laravel Setup CRON JOB

Setting Timezone for One Command:

You can set specific timezone for one command like the following way:

routes/console.php

<?php

use Illuminate\Support\Facades\Schedule;

Schedule::command('send:user-mail')
         ->timezone('Asia/Kolkata')
         ->at('12:00')

Setting Timezone for All Command:

You can set specific timezone for all commands like the following way:

config/app.php

'schedule_timezone' => 'Asia/Kolkata',

I hope you it can help you.

Thank you

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Breeze Login with Google Auth Example

Read Now →

Laravel Datatables Relationship with Filter Column Example

Read Now →

How to Read JSON File in Laravel?

Read Now →

How to Set Custom Redirect URL After Login in Laravel Jetstream?

Read Now →

Laravel Notify Flash Messages using Laravel Notify Example

Read Now →

Laravel Relationship with Comma Separated Values Example

Read Now →

Customize Laravel Jetstream Registration and Login Example

Read Now →

Laravel Jetstream Auth: Login With Email Or Username Example

Read Now →

Laravel Breeze Auth: Login With Email Or Username Example

Read Now →

How to Implement Email Verification in Laravel?

Read Now →

How to Customize Laravel Breeze Authentication?

Read Now →

Laravel 11 Cron Job Task Scheduling Tutorial

Read Now →

Laravel Cron Job Schedule One Time Custom Setup Example

Read Now →