PHPackages                             omar-haris/filament-timezone-field - 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. omar-haris/filament-timezone-field

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

omar-haris/filament-timezone-field
==================================

A Laravel Filament component that enables users to choose a specific timezone grouped by regions, with support for multiple languages.

v2.0.0(1y ago)1713.7k↓60%9[1 PRs](https://github.com/omar-haris/filament-timezone-field/pulls)1MITPHPPHP ^8.1

Since Dec 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/omar-haris/filament-timezone-field)[ Packagist](https://packagist.org/packages/omar-haris/filament-timezone-field)[ Docs](https://github.com/omar-haris/filament-timezone-field)[ GitHub Sponsors](https://github.com/omar-haris)[ RSS](/packages/omar-haris-filament-timezone-field/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (5)Dependencies (13)Versions (6)Used By (1)

Laravel Filament Timezone Field
===============================

[](#laravel-filament-timezone-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b06818b533c6caa79382dd573495680db5f2134dcede2beb8caa101645af0c49/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f6d61722d68617269732f66696c616d656e742d74696d657a6f6e652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/omar-haris/filament-timezone-field)[![GitHub Tests Action Status](https://camo.githubusercontent.com/7a6ebb4ddbb753a770ed4f079d3a58befce72cfd14867ff8d93111c6b578ea52/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6f6d61722d68617269732f66696c616d656e742d74696d657a6f6e652d6669656c642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/omar-haris/filament-timezone-field/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/e3f716d13a3b79cc9261836c0fec1189217229f65454b7463bec569cedbc81b6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6f6d61722d68617269732f66696c616d656e742d74696d657a6f6e652d6669656c642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/omar-haris/filament-timezone-field/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/75f222a1c72ebd901f2b0469b51e3237b99f8224c603a7b27d277b4b873c8840/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6d61722d68617269732f66696c616d656e742d74696d657a6f6e652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/omar-haris/filament-timezone-field)[![Total Stars](https://camo.githubusercontent.com/b06205765a0c7df1e73c1deada6a0d6f00434537e7a1744ee4e9664c61fb2195/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6f6d61722d68617269732f66696c616d656e742d74696d657a6f6e652d6669656c643f7374796c653d666c61742d737175617265)](https://github.com/omar-haris/filament-timezone-field)

A Laravel Filament component that enables users to choose a specific timezone grouped by regions, with support for multiple languages.

[![](https://github.com/omar-haris/filament-timezone-field/raw/main/docs/timezone.png?raw=true)](https://github.com/omar-haris/filament-timezone-field/blob/main/docs/timezone.png?raw=true) [![](https://raw.githubusercontent.com/omar-haris/filament-timezone-field/main/docs/timezone-arabic.png?raw=true)](https://raw.githubusercontent.com/omar-haris/filament-timezone-field/main/docs/timezone-arabic.png?raw=true)

Requirements
------------

[](#requirements)

- PHP 8.1^
- Filament v3

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

[](#installation)

You can install the package via composer:

```
composer require omar-haris/filament-timezone-field
```

You can publish the translation languages files with:

```
php artisan vendor:publish --tag="filament-timezone-field-translations"
```

Supported languages

- Arabic
- English

Usage
-----

[](#usage)

#### Add to your filament form resource:

[](#add-to-your-filament-form-resource)

```
use OmarHaris\FilamentTimezoneField\Forms\Components\Timezone as TimezoneComponent;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            // ...
            TimezoneComponent::make('timezone')
                ->searchable()
                ->required(),
            // ...
        ]);
}
```

#### Add to your filament table resource:

[](#add-to-your-filament-table-resource)

```
use OmarHaris\FilamentTimezoneField\Tables\Columns\Timezone as TimezoneColumn;

public static function form(Form $form): Form
{
    return $form
        ->columns([
            // ...
            TimezoneColumn::make('timezone')
                ->sortable()
                ->toggleable(),
            // ...
        ]);
}
```

#### You can use it as a table filter

[](#you-can-use-it-as-a-table-filter)

```
use OmarHaris\FilamentTimezoneField\Tables\Filters\Timezone as TimezoneFilter;

public static function table(Table $table): Table
{
    return $table
        //...
        ->filters([
            TimezoneFilter::make('timezone'),
            // ...
        ])
}
```

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)

- [Omar Haris](https://github.com/omar-haris)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 93.8% of commits — single point of failure

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 ~72 days

Total

5

Last Release

644d ago

Major Versions

v1.0.3 → v2.0.02024-09-29

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16119345?v=4)[Omar Haris](/maintainers/omar-haris)[@omar-haris](https://github.com/omar-haris)

---

Top Contributors

[![omar-haris](https://avatars.githubusercontent.com/u/16119345?v=4)](https://github.com/omar-haris "omar-haris (15 commits)")[![chrisreedio](https://avatars.githubusercontent.com/u/77644584?v=4)](https://github.com/chrisreedio "chrisreedio (1 commits)")

---

Tags

filamentfilament-pluginlaravelphptimezone-pickerlaravelfilamentfilamentphptimezoneomar-harisfilament-timezone-field

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/omar-haris-filament-timezone-field/health.svg)

```
[![Health](https://phpackages.com/badges/omar-haris-filament-timezone-field/health.svg)](https://phpackages.com/packages/omar-haris-filament-timezone-field)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[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)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274327.2k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)

PHPackages © 2026

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