PHPackages                             idf/nova-worldclock-card - 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. idf/nova-worldclock-card

Abandoned → [interaction-design-foundation/nova-worldclock-card](/?search=interaction-design-foundation%2Fnova-worldclock-card)Library[Utility &amp; Helpers](/categories/utility)

idf/nova-worldclock-card
========================

A Laravel Nova card to display world clocks

3.3.1(8mo ago)858.2k↓33.3%2[1 issues](https://github.com/InteractionDesignFoundation/nova-worldclock-card/issues)MITPHPPHP ^8.1CI passing

Since Nov 30Pushed 2mo ago9 watchersCompare

[ Source](https://github.com/InteractionDesignFoundation/nova-worldclock-card)[ Packagist](https://packagist.org/packages/idf/nova-worldclock-card)[ RSS](/packages/idf-nova-worldclock-card/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (5)Versions (19)Used By (0)

World Clock Laravel Nova Card
=============================

[](#world-clock-laravel-nova-card)

[![World Clock Laravel Nova Card](https://user-images.githubusercontent.com/5278175/69902036-267f7500-139a-11ea-834b-cd9f34f47b6f.png)](https://user-images.githubusercontent.com/5278175/69902036-267f7500-139a-11ea-834b-cd9f34f47b6f.png)

A Laravel Nova card to display world clock.

[![Latest Stable Version](https://camo.githubusercontent.com/b044d31df1f6deb0c2609e5324adc2a5105a32ba6bcf7a9d5b6d65220100e75f/68747470733a2f2f706f7365722e707567782e6f72672f696e746572616374696f6e2d64657369676e2d666f756e646174696f6e2f6e6f76612d776f726c64636c6f636b2d636172642f762f737461626c65)](https://packagist.org/packages/interaction-design-foundation/nova-worldclock-card)[![Total Downloads](https://camo.githubusercontent.com/a4c04c4c0ee5e647bcec2aaddb154c2270528b993d50e1913b100fe73d1cb6b1/68747470733a2f2f706f7365722e707567782e6f72672f696e746572616374696f6e2d64657369676e2d666f756e646174696f6e2f6e6f76612d776f726c64636c6f636b2d636172642f646f776e6c6f616473)](https://packagist.org/packages/interaction-design-foundation/nova-worldclock-card)

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

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require interaction-design-foundation/nova-worldclock-card
```

Usage
-----

[](#usage)

[Register your new card](https://nova.laravel.com/docs/2.0/customization/cards.html#registering-cards).

Basic usage:

```
use InteractionDesignFoundation\WorldClockCard\WorldClock;

public function cards()
{
  return [
     (new WorldClock())
        ->timezones([
            'Asia/Dubai',
            'America/New_York',
            'Europe/Kiev',
        ]),
  ];
}
```

Advanced usage:

```
use InteractionDesignFoundation\WorldClockCard\WorldClock;

public function cards()
{
  return [
     (new WorldClock())
        ->timezones([
            'Asia/Dubai',
            'America/New_York',
            'Europe/Kiev',
        ])
        ->timeFormat('h:i') // Optional, time format. Default is: 'h:i'
        ->updatePeriod(1000) // Optional, to set updating time period in millisecond.
        ->nightRange(22, 6) // Optional, to set range of night hours. Default is [19; 6).
        ->hideContinents() // Optional, hide continents from timezone-names.
        ->timezoneDescriptions([ // Optional, add text description to timezones.
            'Asia/Dubai' => 'Yuto, Hana',
            'America/New_York' => 'Mark',
            'Europe/Kiev' => 'Slava, Ukraine',
        ]),
  ];
}
```

### Changelog

[](#changelog)

Please see [Releases](https://github.com/InteractionDesignFoundation/nova-worldclock-card/releases) for more information on what has changed recently.

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

[](#contributing)

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

License
-------

[](#license)

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

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance73

Regular maintenance activity

Popularity31

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 78.3% 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 ~162 days

Recently: every ~200 days

Total

14

Last Release

244d ago

Major Versions

1.1.0 → 2.0.02021-12-06

2.0.2 → 3.0.02022-05-13

PHP version history (3 changes)1.0PHP &gt;=7.1.0

2.0.0PHP &gt;=8.0

3.1.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/da9774cd2a66143b781db8aa0674523bdc7abcd220e5a1a6c54858d3c2665c27?d=identicon)[IxDF](/maintainers/IxDF)

---

Top Contributors

[![alies-dev](https://avatars.githubusercontent.com/u/5278175?v=4)](https://github.com/alies-dev "alies-dev (65 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (14 commits)")[![lptn](https://avatars.githubusercontent.com/u/150333538?v=4)](https://github.com/lptn "lptn (3 commits)")[![szepeviktor](https://avatars.githubusercontent.com/u/952007?v=4)](https://github.com/szepeviktor "szepeviktor (1 commits)")

---

Tags

hacktoberfestlaravellaravel-novalaravel-nova-cardnovalaravelclocktimeworldnovalaravel-nova-card

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/idf-nova-worldclock-card/health.svg)

```
[![Health](https://phpackages.com/badges/idf-nova-worldclock-card/health.svg)](https://phpackages.com/packages/idf-nova-worldclock-card)
```

###  Alternatives

[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2872.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2861.8M9](/packages/outl1ne-nova-sortable)[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[datomatic/nova-enum-field

A Laravel Nova PHP 8.1 enum field with filters

20134.2k](/packages/datomatic-nova-enum-field)

PHPackages © 2026

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