12345678910111213141516171819202122232425262728293031323334 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Default Active Theme
- |--------------------------------------------------------------------------
- |
- | It will assign the default active theme to be used if one is not set during
- | runtime.
- */
- 'active' => "default",
- /*
- |--------------------------------------------------------------------------
- | Parent Theme
- |--------------------------------------------------------------------------
- |
- | This is a parent theme for the theme specified in the active config
- | option. It works like the WordPress style theme hierarchy, if the blade
- | file is not found in the currently active theme, then it will look for it
- | in the parent theme.
- */
- 'parent' => "default",
- /*
- |--------------------------------------------------------------------------
- | Base Path
- |--------------------------------------------------------------------------
- |
- | The base path where all the themes are located.
- */
- 'base_path' => base_path('themes')
- ];
|