-
Notifications
You must be signed in to change notification settings - Fork 71
Configuration
Raphael Ndwiga edited this page Feb 20, 2017
·
3 revisions
Caffeinated Themes comes bundled with a config file that you may publish and customize.
To publish the bundled config file, simply run Laravel's vendor:publish
Artisan command:
php artisan vendor:publish
This will copy the bundled config file to config/themes.php
together with other vendor files. If you just want to publish Caffeinated Themes config file, run Artisan command:
php artisan vendor:publish --provider="Caffeinated\Themes\ThemesServiceProvider"
Allows you to define the default active theme, if a theme is not manually set during runtime.
'active' => 'bootstrap'
Allows you to define the location in which your themes can be found.
'path' => public_path('themes')