Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages

Installation Instructions

Nova World Clock Card

A Laravel Nova card to display World Clocks

Installation:

You can install the package in to a Laravel app that uses Nova via composer:

composer require amidesfahani/nova-world-clock

Usage:

Add the below to app/Providers/NovaServiceProvder.php

namespace App\Providers;

[...]

use AmidEsfahani\NovaWorldClock\NovaWorldClock;

class NovaServiceProvider extends NovaApplicationServiceProvider
{

[...]

  public function card()
  {
      return [
         (new NovaWorldClock())
            ->timezones([
                'Asia/Tehran',
                'America/new_york',
                'America/los_angeles',
            ])
            ->timeFormat('h:i') //Optional time format default is: 'h:i:s'
            ->updatePeriod(1000) //Optional to set updating time period in millisecond default is 1000 ms = 1 second
            ->title(__('World Clock'))
            ->showTitle(true)
      ];
  }

[...]

}

Readme

Nova World Clock Card

A Laravel Nova card to display World Clocks

Installation:

You can install the package in to a Laravel app that uses Nova via composer:

composer require amidesfahani/nova-world-clock

Usage:

Add the below to app/Providers/NovaServiceProvder.php

namespace App\Providers;

[...]

use AmidEsfahani\NovaWorldClock\NovaWorldClock;

class NovaServiceProvider extends NovaApplicationServiceProvider
{

[...]

  public function card()
  {
      return [
         (new NovaWorldClock())
            ->timezones([
                'Asia/Tehran',
                'America/new_york',
                'America/los_angeles',
            ])
            ->timeFormat('h:i') //Optional time format default is: 'h:i:s'
            ->updatePeriod(1000) //Optional to set updating time period in millisecond default is 1000 ms = 1 second
            ->title(__('World Clock'))
            ->showTitle(true)
      ];
  }

[...]

}

License:

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

Screenshots

Back to Top
Added 5 years ago
Last updated 5 Years Ago
Version v0.1
Nova Version *
Composer
amidesfahani/nova-world-clock
GitHub stars 0
Packagist downloads 9,634

Favorites

1 user favorited

Rating

5.00
(out of 5)
★★★★★
★★★★
★★★
★★
1 ratings

Author

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas