How to Convert UTC Time to Local Time in Laravel 10

Websolutionstuff | Mar-11-2024 | Categories : Laravel PHP

As a Laravel developer, working with time zones is a common requirement, especially when dealing with global applications. One crucial aspect is converting UTC (Coordinated Universal Time) to local time, ensuring that users across different regions see timestamps in their respective time zones.

In this guide, I'll walk you through the steps to effectively handle UTC to local time conversions in Laravel 10.

So, let's see how to convert UTC to local time in laravel 10, laravel 10 converts UTC to local time, php converts UTC to local time, and UTC to local in laravel 8/9/10.

Step 1: Configure Laravel's Timezone

In Laravel, configuring the application's default timezone is the initial step. Open the config/app.php file and locate the timezone key. Set it to your preferred time zone. For instance, if you want to set it to 'UTC', you would write:

'timezone' => 'UTC',

 

Step 2: Create a Helper Function

To streamline the process of converting UTC to local time throughout your application, creating a helper function is beneficial. Open the app/Helpers directory or create it if it doesn't exist. Then, create a new file, for example, TimeHelper.php, and define your helper function:

<?php

// app/Helpers/TimeHelper.php

use Carbon\Carbon;

function convertToLocale($time)
{
    return Carbon::parse($time)->timezone(config('app.timezone'));
}

 

Step 3: Implement the Helper Function

Utilize the convertToLocale helper function in your controllers, views, or any other relevant components where UTC needs to be converted to local time.

use App\Helpers\TimeHelper;

public function show($id)
{
    $post = Post::find($id);
    $localizedCreatedAt = TimeHelper::convertToLocale($post->created_at);

    return view('post.show', compact('post', 'localizedCreatedAt'));
}

 

Step 4: Display Localized Time in Views

Now that you've converted the UTC to local time, you can easily display it in your views. For example:

<p>Created at: {{ $localizedCreatedAt->format('Y-m-d H:i:s') }}</p>

This will output the localized creation time of the post.

Example:

<?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:

2024-03-01 20:33:10

 

Conclusion

Converting UTC to local time in Laravel 8, Laravel 9, and Laravel 10 is essential for providing a seamless user experience across various time zones. By following these steps and leveraging Laravel's powerful features like Carbon, you can effortlessly manage time zone conversions in your application.

 


You might also like:

Recommended Post
Featured Post
How To Import Large CSV File In Database Using Laravel 9
How To Import Large CSV File I...

In this article, we will see how to import a large CSV file into the database using laravel 9. Here, we will learn&...

Read More

Sep-15-2022

How to Get Soft Deleted Records in Laravel 10
How to Get Soft Deleted Record...

Hey there! Ever wondered how to recover deleted data in Laravel 10 without much hassle? Well, you're in luck! I'...

Read More

Nov-27-2023

How to Disable Right Click using jQuery
How to Disable Right Click usi...

In this small post i will show you how to disable right click using jquery. Here, we will disable right click on pa...

Read More

Aug-18-2021

How To Install React JS Step By Step
How To Install React JS Step B...

In this article, we will see how to install React JS step by step. we will see how to set up an environment fo...

Read More

Aug-08-2022