Initial release of the Inline Date-time Picker for Laravel Filament.
This plugin is based on the Filament Date-time Picker field and allows you to display the Date-time Picker field inline within your Filament forms.
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();
Full Changelog: https://github.com/Jacobtims/inline-date-time-picker/commits/v1.0.0