PHPackages                             chris-ware/nova-clock-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. chris-ware/nova-clock-card

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

chris-ware/nova-clock-card
==========================

A Laravel Nova card to display the date and time.

1.2.0(7y ago)937.0k3MITVuePHP &gt;=7.1.0

Since Aug 25Pushed 7y ago2 watchersCompare

[ Source](https://github.com/chris-ware/nova-clock-card)[ Packagist](https://packagist.org/packages/chris-ware/nova-clock-card)[ RSS](/packages/chris-ware-nova-clock-card/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Nova Clock Card
===============

[](#nova-clock-card)

A clock card for Laravel Nova

[![Latest Stable Version](https://camo.githubusercontent.com/a0def70ab2d50ee20dd0f6351e6405a1c66808e298e24d6e37de4dd0be7ad0cf/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f63687269732d776172652f6e6f76612d636c6f636b2d63617264)](https://packagist.org/packages/chris-ware/nova-clock-card)[![Total Downloads](https://camo.githubusercontent.com/e7b1c4655ac9e3727f6e39696667b48a1366cb9f5ecf2c165bb23e8e308a2aca/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f63687269732d776172652f6e6f76612d636c6f636b2d63617264)](https://camo.githubusercontent.com/e7b1c4655ac9e3727f6e39696667b48a1366cb9f5ecf2c165bb23e8e308a2aca/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f63687269732d776172652f6e6f76612d636c6f636b2d63617264)[![License](https://camo.githubusercontent.com/9c0fd90e52f0f9f05a513c4f3be1027ddfd39e004a052497fc2b7527c62697f6/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f6c6963656e73652f63687269732d776172652f6e6f76612d636c6f636b2d63617264)](https://camo.githubusercontent.com/9c0fd90e52f0f9f05a513c4f3be1027ddfd39e004a052497fc2b7527c62697f6/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f6c6963656e73652f63687269732d776172652f6e6f76612d636c6f636b2d63617264)[![StyleCI](https://camo.githubusercontent.com/b2bf3db69d671f564ad8eab1ae8118d7c8ed85a981854d5286d9f3e4f734535b/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3134363130323931392f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/146102919)

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

[](#installation)

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

```
composer require chris-ware/nova-clock-card
```

Next, you must register the card with Nova. This is typically done in the `cards` method of the `NovaServiceProvider`.

```
// in app/Providers/NovaServiceProvder.php

// ...
public function cards()
{
    return [
        // ...
        new \ChrisWare\NovaClockCard\NovaClockCard,
    ];
}
```

Customization
-------------

[](#customization)

You are able to customize date &amp; time formats, locale and timezone and display type. By default locale and timezone is taken from `config/app.php`. The default display type is `text`. The `analogue` display type is also available.

```
// in app/Providers/NovaServiceProvder.php

// ...
public function cards()
{
    return [
        // ...
        (new \ChrisWare\NovaClockCard\NovaClockCard)
            ->locale('sk')
            ->dateFormat('dddd, Do MMMM YYYY')
            ->timeFormat('LTS')
            ->timezone('UTC')
            ->display('analogue'),
    ];
}
```

Information
-----------

[](#information)

This card will pull in your set timezone from `config/app.php` and use it to display the date and time.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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 ~53 days

Total

3

Last Release

2709d ago

### Community

Maintainers

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

---

Top Contributors

[![chris-ware](https://avatars.githubusercontent.com/u/19684457?v=4)](https://github.com/chris-ware "chris-ware (10 commits)")[![flxsource](https://avatars.githubusercontent.com/u/1785446?v=4)](https://github.com/flxsource "flxsource (4 commits)")[![m-a-k-o](https://avatars.githubusercontent.com/u/6873535?v=4)](https://github.com/m-a-k-o "m-a-k-o (1 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/chris-ware-nova-clock-card/health.svg)

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

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[genealabs/laravel-overridable-model

Provide a uniform method of allowing models to be overridden in Laravel.

92398.0k2](/packages/genealabs-laravel-overridable-model)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[yieldstudio/nova-google-autocomplete

A Laravel Nova Google autocomplete field.

12218.4k](/packages/yieldstudio-nova-google-autocomplete)

PHPackages © 2026

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