A Filament plugin for adding inline Date-time Pickers to your Filament forms.
jacobtims/inline-date-time-picker is a Laravel package for a filament plugin for adding inline date-time pickers to your filament forms..
It currently has 8 GitHub stars and 12.443 downloads on Packagist (latest version v2.1.0).
Install it with composer require jacobtims/inline-date-time-picker.
Discover more Laravel packages by jacobtims
or browse all Laravel packages to compare alternatives.
Last updated

A Filament plugin for adding inline date-time pickers to your forms.
You can install the package via composer:
composer require jacobtims/inline-date-time-picker
Optionally, you can publish the views using
php artisan vendor:publish --tag="inline-date-time-picker-views"
You can use all of the methods available for the Filament Date-time picker field, except for the prefix and suffix methods.
use Jacobtims\InlineDateTimePicker\Forms\Components\InlineDateTimePicker;
InlineDateTimePicker::make('date')
->label('My Inline Date Time Picker')
->default(today())
->minDate(today())
->date(true)
->time(false)
->required();
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.