cms/config/cms.php
Funky Waddle 37ed997989 feat(cms): initialize Laravel project structure and core CMS files
- Added standard Laravel directory structure and configuration.

- Included Svelte and Tailwind configuration for the admin interface.

- Added core PHPUnit and testing scripts.
2026-04-13 12:48:06 -05:00

26 lines
743 B
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Active Theme
|--------------------------------------------------------------------------
|
| This setting defines the active theme for the CMS frontend.
| Themes are located in the /themes directory.
|
*/
'theme' => env('CMS_THEME', 'icehouse'),
/*
|--------------------------------------------------------------------------
| Admin Path
|--------------------------------------------------------------------------
|
| This setting defines the URL prefix for the admin section.
| It should be set in the .env file.
|
*/
'admin_path' => env('ADMIN_PATH', 'loom'),
];