2016-02-04 23:28:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'enabled' => true,
|
2016-02-06 04:27:43 +00:00
|
|
|
'themes_path' => realpath(base_path('resources/themes')),
|
2016-02-04 23:28:14 +00:00
|
|
|
'asset_not_found' => 'LOG_ERROR',
|
2017-03-18 19:56:19 +00:00
|
|
|
'active' => env('APP_THEME', 'pterodactyl'),
|
2016-02-04 23:28:14 +00:00
|
|
|
|
|
|
|
'themes' => [
|
2017-01-15 02:32:33 +00:00
|
|
|
'pterodactyl' => [
|
|
|
|
'extends' => null,
|
|
|
|
'views-path' => 'pterodactyl',
|
|
|
|
'asset-path' => 'themes/pterodactyl',
|
|
|
|
],
|
2016-02-04 23:28:14 +00:00
|
|
|
],
|
2016-02-06 04:27:43 +00:00
|
|
|
];
|