News

Automatically Set a Local Timezone for Users

Published
Automatically Set a Local Timezone for Users image

Laravel Timezone is a package by James Mills that sets a timezone for a user in your application and then show date/times to them in their local timezone.

It works by listening for the user login event and setting the timezone in the database. It uses Laravel GeoIP to look up the user using an IP address.

You can display the localized timezone to the user using a provided facade:

Timezone::convertToLocal($post->created_at)

You can also use the provided blade directive:

@displayDate($post->created_at)
 
@displayDate($post->created_at, 'Y-m-d g:i', true)

You can also convert the localized date back to UTC:

Timezone::convertFromLocal($request->get('publish_at'));

You can learn more about this package, get full installation instructions, and view the source code on GitHub at jamesmills/laravel-timezone.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
PayZephyr: One Payment API for Stripe, Paystack, and PayPal image

PayZephyr: One Payment API for Stripe, Paystack, and PayPal

Read article
Bifrost Turns One With AI Builds and New Workflows image

Bifrost Turns One With AI Builds and New Workflows

Read article
Preview Blade Templates in macOS Finder with Quick Blade image

Preview Blade Templates in macOS Finder with Quick Blade

Read article
Artisan Debugging Commands in Laravel Telescope 5.24.0 image

Artisan Debugging Commands in Laravel Telescope 5.24.0

Read article
Queue totalSize() and JobInterrupted Event in Laravel 13.31 image

Queue totalSize() and JobInterrupted Event in Laravel 13.31

Read article
Find Unexpected Test Inputs with Fuzz for Pest image

Find Unexpected Test Inputs with Fuzz for Pest

Read article