richardkeep/nova-timenow
Composer 安装命令:
composer require richardkeep/nova-timenow
包简介
A Laravel Nova card to display the current time from different timezones in the world.
README 文档
README
A Laravel Nova card to display the current time from different timezones in the world.
| Version | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 |
|---|---|---|---|---|---|---|---|
| 1.* | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✗ |
| 2.* | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✅ |
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require richardkeep/nova-timenow
Next up, you must register the tool with Nova. This is typically done in the cards method of the NovaServiceProvider.
// in app/Providers/NovaServiceProvder.php // ... public function cards() { return [ // ... new \Richardkeep\NovaTimenow\NovaTimenow, ]; }
Customization
By default, the system's timezone and America\Mexico_City will be used as the list of timezones. To override this, please add more valid timezones.
public function cards() { return [ // ... (new \Richardkeep\NovaTimenow\NovaTimenow)->timezones([ 'Africa/Nairobi', 'America/Mexico_City', 'Australia/Sydney', 'Europe/Paris', 'Asia/Tokyo', ])->defaultTimezone('Africa/Nairobi'), ]; }
Usage
The card will be automatically displayed on the dashboard. You can now select the timezone from the dropdown list of registered timezones to view the current time in that region,
统计信息
- 总下载量: 49.7k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-15
