### Install Filament Time Picker Package - Bash Source: https://github.com/husam-tariq/filament-timepicker/blob/3.0.0/README.md Installs the `husam-tariq/filament-timepicker` package using Composer. This command adds the package as a dependency to your project. ```bash composer require husam-tariq/filament-timepicker ``` -------------------------------- ### Run Filament Time Picker Tests - Bash Source: https://github.com/husam-tariq/filament-timepicker/blob/3.0.0/README.md Executes the test suite for the Filament Time Picker package using Composer. This command runs the tests defined in the package. ```bash composer test ``` -------------------------------- ### Publish Filament Time Picker Views - Bash Source: https://github.com/husam-tariq/filament-timepicker/blob/3.0.0/README.md Optionally publishes the view files for the Filament Time Picker package using the Artisan command. This allows customization of the package's views. ```bash php artisan vendor:publish --tag="filament-timepicker-views" ``` -------------------------------- ### Use TimePickerField in Filament Form - PHP Source: https://github.com/husam-tariq/filament-timepicker/blob/3.0.0/README.md Demonstrates how to add a TimePickerField to a Filament form schema. It uses the `TimePickerField::make()` method and sets a label and custom button labels. ```php use HusamTariq\FilamentTimePicker\Forms\Components\TimePickerField; TimePickerField::make('from_hour')->label('time')->okLabel("Confirm")->cancelLabel("Cancel"), ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.