PHPackages                             rhyslees/jetstream-user-timezone - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. rhyslees/jetstream-user-timezone

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rhyslees/jetstream-user-timezone
================================

This is my package jetstream-user-timezone

2.0.0(3y ago)535[3 PRs](https://github.com/RhysLees/jetstream-user-timezone/pulls)MITPHPPHP ^8.1

Since Sep 10Pushed 2y agoCompare

[ Source](https://github.com/RhysLees/jetstream-user-timezone)[ Packagist](https://packagist.org/packages/rhyslees/jetstream-user-timezone)[ Docs](https://github.com/rhyslees/jetstream-user-timezone)[ RSS](/packages/rhyslees-jetstream-user-timezone/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (15)Versions (7)Used By (0)

Jetstream User Timezone
=======================

[](#jetstream-user-timezone)

This package adds a simple way for you to add a user timezone selection field to your user profile page in jetstream.

- Validation included

[![image](https://user-images.githubusercontent.com/43909932/189502298-5094b22a-0b56-4767-85e4-74c15798a7ed.png)](https://user-images.githubusercontent.com/43909932/189502298-5094b22a-0b56-4767-85e4-74c15798a7ed.png)

`Note: Livewire is currently the only supported stack`

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require rhyslees/jetstream-user-timezone
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="jetstream-user-timezone-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="jetstream-user-timezone-config"
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="jetstream-user-timezone-views"
```

Usage
-----

[](#usage)

Goto `resources/views/profile/show.blade.php` and and the following between the information form and password form.

```
@livewire('jetstream-user-timezone::update-timezone-form')

```

It should look like this:

```
...
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
    @livewire('profile.update-profile-information-form')

@endif

@livewire('jetstream-user-timezone::update-timezone-form')

@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))

        @livewire('profile.update-password-form')

@endif
...
```

Finally add the following to your `User` model:

```
use RhysLees\JetstreamUserTimezone\Traits\HasTimezone;

class User extends Authenticatable
{
    use HasTimezone;
    ...
}
```

What timezones are shown?
-------------------------

[](#what-timezones-are-shown)

Under the hood, we use php's default `timezone_identifiers_list()` function to return all avalible timezones to the user. If you would like to specify what timezone to use, you can fill the array with your choice of options in `config/jetstream-user-timezone.php` in the timezones array.

`Note: you must ensure you add valid timezones to the array or validation will fail for users.`

For a list of valid timezones please see:

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Rhys Lees](https://github.com/RhysLees)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~51 days

Total

3

Last Release

1288d ago

Major Versions

1.0.1 → 2.0.02022-12-22

### Community

Maintainers

![](https://www.gravatar.com/avatar/5ec1bfd05f95c19d3d12c7bb0fd2abc097b62e49cc0dfa32d6e6460c76607c95?d=identicon)[RhysLees](/maintainers/RhysLees)

---

Top Contributors

[![RhysLees](https://avatars.githubusercontent.com/u/43909932?v=4)](https://github.com/RhysLees "RhysLees (18 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (11 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (9 commits)")

---

Tags

laravelRhysLeesjetstream-user-timezone

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/rhyslees-jetstream-user-timezone/health.svg)

```
[![Health](https://phpackages.com/badges/rhyslees-jetstream-user-timezone/health.svg)](https://phpackages.com/packages/rhyslees-jetstream-user-timezone)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[leandrocfe/filament-apex-charts

Apex Charts integration for Filament PHP.

4911.6M11](/packages/leandrocfe-filament-apex-charts)[filament/support

Core helper methods and foundation code for all Filament packages.

2331.0M244](/packages/filament-support)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
