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