The Filament World Clock plugin designed to showcase global timezones in a card format is a user-friendly tool that allows users to effortlessly display current times across various regions worldwide.
You can install the package via composer:
composer require joaopaulolndev/filament-world-clock
[!NOTE] to publish the assets is necessary to run the command below:
php artisan vendor:publish --tag=filament-world-clock-assets --force
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-world-clock-views"
Optionally, you can publish the translations using
php artisan vendor:publish --tag="filament-world-clock-translations"
You can publish the flags
[!NOTE] to publish the flags is necessary to run the command below:
php artisan vendor:publish --tag=blade-flags --force
Add in AdminPanelProvider.php
use Joaopaulolndev\FilamentWorldClock\FilamentWorldClockPlugin; ->plugins([ FilamentWorldClockPlugin::make() ->timezones([ 'America/New_York', 'America/Sao_Paulo', 'Asia/Tokyo', ])])
Optionally, you can add more configs as example below:
use Joaopaulolndev\FilamentWorldClock\FilamentWorldClockPlugin; FilamentWorldClockPlugin::make() ->timezones([ 'America/New_York', 'America/Sao_Paulo', 'Asia/Tokyo', ]) ->setTimeFormat('H:i') //Optional time format default is: 'H:i' ->shouldShowTitle(false) //Optional show title default is: true ->setTitle('Hours') //Optional title default is: 'World Clock' ->setDescription('Different description') //Optional description default is: 'Show hours around the world by timezone' ->setQuantityPerRow(1) //Optional quantity per row default is: 1 ->setColumnSpan('full') //Optional column span default is: '1/2' ->setSort(10)
📝 Note: if missing some flag, the default value will be used. But you can open a pr to add more flags.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
João Paulo is a self-taught full-stack developer who loves PHP, Laravel and Filament. He is a Brazilian developer that loves to contribute to open-source projects.