-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy paththeme.php
More file actions
34 lines (31 loc) · 1.09 KB
/
theme.php
File metadata and controls
34 lines (31 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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' => null,
/*
|--------------------------------------------------------------------------
| Base Path
|--------------------------------------------------------------------------
|
| The base path where all the themes are located.
*/
'base_path' => base_path('themes')
];