### Install Filament World Clock Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Installs the Filament World Clock plugin using Composer. ```bash composer require joaopaulolndev/filament-world-clock ``` -------------------------------- ### Run Tests Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Executes the test suite for the Filament World Clock plugin. ```bash composer test ``` -------------------------------- ### Configure Filament World Clock Plugin Options Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Demonstrates optional configurations for the Filament World Clock plugin, including time format, title visibility, custom title, description, quantity per row, column span, and sort order. ```php 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) ``` -------------------------------- ### Publish Filament World Clock Views Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Publishes the views for the Filament World Clock plugin. ```bash php artisan vendor:publish --tag="filament-world-clock-views" ``` -------------------------------- ### Publish Filament World Clock Assets Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Publishes the necessary assets for the Filament World Clock plugin. ```bash php artisan vendor:publish --tag=filament-world-clock-assets --force ``` -------------------------------- ### Publish Filament World Clock Translations Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Publishes the translation files for the Filament World Clock plugin. ```bash php artisan vendor:publish --tag="filament-world-clock-translations" ``` -------------------------------- ### Add Filament World Clock Plugin to AdminPanelProvider Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Integrates the Filament World Clock plugin into the Filament Admin Panel by adding it to the `AdminPanelProvider.php` file. ```php use Joaopaulolndev\FilamentWorldClock\FilamentWorldClockPlugin; // ... ->plugins([ FilamentWorldClockPlugin::make() ->timezones([ 'America/New_York', 'America/Sao_Paulo', 'Asia/Tokyo', ]) ]) ``` -------------------------------- ### Publish Blade Flags Source: https://github.com/joaopaulolndev/filament-world-clock/blob/main/README.md Publishes the flag assets used by the Filament World Clock plugin. ```bash php artisan vendor:publish --tag=blade-flags --force ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.