Initial commit

This commit is contained in:
Ronald Huynen
2026-03-23 21:37:59 +01:00
commit 2547717edb
2193 changed files with 972171 additions and 0 deletions

28
config/flatpickr.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
return [
/**
* The url to be used to serve css file.
* If null, it will use the one shipped with package.
*/
'css_url' => env('FLATPICKR_CSS_URL', '/vendor/flatpickr/css/flatpickr.css'),
/**
* The url to be used to serve js file.
* If null, it will use the one shipped with package.
*/
'js_url' => env('FLATPICKR_JS_URL', '/vendor/flatpickr/js/flatpickr.js'),
/**
* Determines if the styles shipped with the package should be used.
* Setting it to false will remove the styling for the component.
* The flatpickr css will be untouched.
*/
'use_style' => env('FLATPICKR_USE_STYLE', true),
/**
* The language that flatpickr will use.
* If no value is passed, it will be English.
*/
'locale' => env('FLATPICKR_LOCALE', null),
];