theme.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Active Theme
  6. |--------------------------------------------------------------------------
  7. |
  8. | It will assign the default active theme to be used if one is not set during
  9. | runtime.
  10. */
  11. 'active' => "default",
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Parent Theme
  15. |--------------------------------------------------------------------------
  16. |
  17. | This is a parent theme for the theme specified in the active config
  18. | option. It works like the WordPress style theme hierarchy, if the blade
  19. | file is not found in the currently active theme, then it will look for it
  20. | in the parent theme.
  21. */
  22. 'parent' => "default",
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Base Path
  26. |--------------------------------------------------------------------------
  27. |
  28. | The base path where all the themes are located.
  29. */
  30. 'base_path' => base_path('themes')
  31. ];