app.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Encryption Key
  6. |--------------------------------------------------------------------------
  7. |
  8. | This key is used by the Illuminate encrypter service and should be set
  9. | to a random, 32 character string, otherwise these encrypted strings
  10. | will not be safe. Please do this before deploying an application!
  11. |
  12. */
  13. 'key' => env('APP_KEY', 'SomeRandomString!!!'),
  14. 'cipher' => 'AES-256-CBC',
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Application Locale Configuration
  18. |--------------------------------------------------------------------------
  19. |
  20. | The application locale determines the default locale that will be used
  21. | by the translation service provider. You are free to set this value
  22. | to any of the locales which will be supported by the application.
  23. |
  24. */
  25. 'locale' => env('APP_LOCALE', 'en'),
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Application Fallback Locale
  29. |--------------------------------------------------------------------------
  30. |
  31. | The fallback locale determines the locale to use when the current one
  32. | is not available. You may change the value to correspond to any of
  33. | the language folders that are provided through your application.
  34. |
  35. */
  36. 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
  37. ];