| Install | |
|---|---|
composer require webplusmultimedia/date-time-range-picker |
|
| Latest Version: | V0.9.9 |
| PHP: | ^8.1 |
| License: | MIT |
| Last Updated: | Mar 16, 2026 |
| Links: | GitHub · Packagist |
Here is a date, dateTime and date range picker for livewire made for Tall Stack
Here is a date, dateTime and date range picker for livewire made for Tall Stack
You can install the package via composer:
composer require webplusmultimedia/date-time-range-picker
Add the following settings to your Tailwindcss config file, tailwind.config.js
module.exports = {
presets: [
require('./vendor/webplusmultimedia/date-time-range-picker/tailwind.config.js')
],
content: [
'...',
/* Date time Range */
'./vendor/webplusmultimedia/date-time-range-picker/js/**/*.js',
'./vendor/webplusmultimedia/date-time-range-picker/resources/views/**/*.blade.php',
],
theme: {}
}
In your ./resources/js/app.js, import the js file
import './../../vendor/webplusmultimedia/filemanager/resources/dist/js/date_time_range'
You can customize the color theme by changing just one variable in your tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
...
theme: {
extend: {
colors: {
...
'primary-datepicker' : colors.cyan // Or what ever you want
},
},
},
...
}
Optionally, you can publish the views using, but don't need that.
php artisan vendor:publish --tag="date-time-range-picker-views"
In your blade livewire view :
<div class="pt-5">
<x-webplusm-date-time-range-picker type="range" label="Dates de formation"
wire:model="date"
/>
</div>
Coming sooner
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.