2016-02-04 17:28:14 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'enabled' => true,
|
2016-02-05 23:27:43 -05:00
|
|
|
'themes_path' => realpath(base_path('resources/themes')),
|
2016-02-04 17:28:14 -06:00
|
|
|
'asset_not_found' => 'LOG_ERROR',
|
2016-02-06 15:24:08 -06:00
|
|
|
'active' => ENV('APP_THEME', 'default'),
|
2016-02-04 17:28:14 -06:00
|
|
|
|
|
|
|
'themes' => [
|
|
|
|
'default' => [
|
|
|
|
'extends' => null,
|
|
|
|
'views-path' => 'default',
|
|
|
|
'asset-path' => 'themes/default',
|
|
|
|
],
|
2017-01-14 21:32:33 -05:00
|
|
|
'pterodactyl' => [
|
|
|
|
'extends' => null,
|
|
|
|
'views-path' => 'pterodactyl',
|
|
|
|
'asset-path' => 'themes/pterodactyl',
|
|
|
|
],
|
2016-02-04 17:28:14 -06:00
|
|
|
],
|
2016-02-05 23:27:43 -05:00
|
|
|
];
|