cvepdb / laravel-themes
Themes system for laravel framework
Requires
- php: >=5.5.9
- beelab/bowerphp: ^0.4.0
- cvepdb/laravel-support: 2.3.*
- illuminate/config: 5.3.16
- illuminate/filesystem: 5.3.16
- illuminate/support: 5.3.4
- illuminate/translation: 5.3.16
- illuminate/view: 5.3.16
Requires (Dev)
- laravel/framework: 5.3.*
- phpunit/phpunit: 4.6.*
README
Official documentation is located here
Installation
Open your composer.json file, and add the new required package.
"pingpong/themes": "~2.1"
Next, open a terminal and run.
composer update
Next, Add new service provider in config/app.php.
'Pingpong\Themes\ThemesServiceProvider',
Next, Add new aliases in config/app.php.
'Theme' => 'Pingpong\Themes\ThemeFacade',
Next, publish the package's assets.
php artisan vendor:publish
Done.
Usage
Get all themes.
Theme::all();
Set theme active.
Theme::set('default');
Theme::setCurrent('default');
Get current theme active.
Theme::getCurrent();
Check theme.
Theme::has('simple')
Theme::exists('other-theme');
Set theme path.
$path = public_path('themes');
Theme::setPath($path);
Get theme path.
Theme::getThemePath('default');
Get themes path.
Theme::getPath();
Get view from current active theme.
Theme::view('index');
Theme::view('folders.view');
Get translation value from active theme.
Theme::lang('group.name');
Get theme's config value from active theme.
Theme::config('filename.key');
Theme::config('filename.key.subkey');
Theme::config('filename.key.subkey', 'default value here');
If your theme's config file named config.php, you can get the value of config little bit short.
Theme::config('key');
Theme::config('key.subkey');
You can also get config value from other theme.
// current theme
Theme::config('key');
// from other theme
Theme::config('bootstrap::key');
Artisan Commands
Generate a new theme.
php artisan theme:make foo
Show all available themes.
php artisan theme:list
Cache all themes.
php artisan theme:cache
Publish all theme's assets from all themes.
php artisan theme:publish
Publish all theme's assets from the specified theme.
php artisan theme:publish theme-name