flatpickr.php 769 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. return [
  3. /**
  4. * The url to be used to serve css file.
  5. * If null, it will use the one shipped with package.
  6. */
  7. 'css_url' => env('FLATPICKR_CSS_URL', null),
  8. /**
  9. * The url to be used to serve js file.
  10. * If null, it will use the one shipped with package.
  11. */
  12. 'js_url' => env('FLATPICKR_JS_URL', null),
  13. /**
  14. * Determines if the styles shipped with the package should be used.
  15. * Setting it to false will remove the styling for the component.
  16. * The flatpickr css will be untouched.
  17. */
  18. 'use_style' => env('FLATPICKR_USE_STYLE', true),
  19. /**
  20. * The language that flatpickr will use.
  21. * If no value is passed, it will be English.
  22. */
  23. 'locale' => env('FLATPICKR_LOCALE', null),
  24. ];