the bola v2 website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sites.php 607B

12345678910111213141516171819202122232425
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Sites
  6. |--------------------------------------------------------------------------
  7. |
  8. | Each site should have root URL that is either relative or absolute. Sites
  9. | are typically used for localization (eg. English/French) but may also
  10. | be used for related content (eg. different franchise locations).
  11. |
  12. */
  13. 'sites' => [
  14. 'default' => [
  15. 'name' => config('app.name'),
  16. 'locale' => 'en_US',
  17. 'url' => '/',
  18. ],
  19. ],
  20. ];