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

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article