ItSolutionStuff.com

How to Convert UTC Time to Local Time in Laravel?

By Hardik Savani • November 5, 2023
Laravel

Hello Friends,

Here, I will show you how to work laravel convert utc to local time. we will help you to give an example of laravel carbon convert utc to local time. I explained simply about how to convert utc time to local time in laravel. I’m going to show you about how to convert utc to local time in laravel. So, let's follow a few steps to create an example of convert utc to local time laravel.

we will use Carbon setTimezone() method to convert utc time to local time in laravel. you need to add your local timezone as argument in setTimezone() method. in this example, we will convert utc time to my local time "Asia/Kolkata".

So, let's see the simple examples with code:

Example 1:

you can see the simple example with custom date and time:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Carbon\Carbon;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$time = Carbon::parse('2023-10-18 20:25:48')

->setTimezone('Asia/Kolkata')

->toDateTimeString();

dd($time);

}

}

Output:

2023-10-19 01:55:48

Example 2:

you can see the simple example with now date and time:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Carbon\Carbon;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$time = Carbon::now()

->setTimezone('Asia/Kolkata')

->toDateTimeString();

dd($time);

}

}

Output:

2023-10-19 09:23:56

I hope it can help you...

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 Carbon Count Days Between Two Dates Example

Read Now →
ā˜…

Laravel Carbon Parse Date Format Example

Read Now →
ā˜…

How to Check Date is Today's Date or not in Laravel Carbon?

Read Now →
ā˜…

Laravel Carbon Time Format AM PM Example Code

Read Now →
ā˜…

How to use Carbon in Laravel Blade or Controller File?

Read Now →
ā˜…

Laravel Carbon diffForHumans() Example

Read Now →
ā˜…

How to Compare Two Dates in Laravel Carbon?

Read Now →
ā˜…

Laravel Carbon Get Previous Month Example

Read Now →
ā˜…

Laravel Carbon Get Next Month Example

Read Now →
ā˜…

Laravel Carbon Get Tomorrow Date Example

Read Now →
ā˜…

Laravel Carbon Get Yesterday Date Example

Read Now →
ā˜…

Laravel Carbon Subtract Months from Date Example

Read Now →
ā˜…

Laravel Carbon Add Days to Date Example

Read Now →