29 lines
833 B
PHP
29 lines
833 B
PHP
<?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),
|
|
];
|