Plugins
Calendar Input
A custom Filament form field component for selecting dates using a calendar input with localization support.
Form Builder
Form Field
Dark theme support
Yes
Multi language support
Yes
Not compatible with the latest version
Supported versions: 3.x
Documentation

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A simple calendar input for FilamentPHP.

Example

#Installation

You can install the package via composer:

composer require alvleont/calendar-input

Optionally, you can publish the views using

php artisan vendor:publish --tag="calendar-input-views"

Usage

use Alvleont\CalendarInput\CalendarInput;
 
class ProductResource
{
public static function form(Form $form): Form
{
return $form->schema([
CalendarInput::make('date')
->name('Calendar')
->minDate('2025-06-01') //You can use the date you want, or null (optional method)
->maxDate('2029-09-30') //You can use the date you want, or null (optional method)
->disabledDates([]) //Optional Method
->disabled() //In case It'll be disabled or for the view page.
]);
}
}

#Testing

composer test

#Changelog

Please see CHANGELOG for more information on what has changed recently.

#Contributing

You can contribute to the package. Just PR your code and It will be reviewed.

#Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

#Credits

#License

The MIT License (MIT). Please see License File for more information.

Álvaro León Torres

Álvaro León Torres is a pharmacist, software engineer, and entrepreneur who builds technology to simplify complex processes and empower professionals in regulated industries. He writes code to create meaningful change—often from his home office, with his cats nearby and karaoke tracks queued up.

1
Plugins
5
Stars
Featured Plugins