xiaogouxo / laravel-theme
Laravel 5 Themes: Asset & Views folder per theme. Theme inheritance. Blade integration and more...
v2.1.1
2019-01-14 07:56 UTC
Requires
- illuminate/contracts: 5.4.*|5.5.*|5.6.*|5.7.*
Requires (Dev)
- orchestra/testbench: ~3.4
- phpunit/phpunit: ^6.0
Suggests
- orchestra/asset: Use '@css' and '@js' in Blade files
This package is not auto-updated.
Last update: 2026-06-19 07:26:56 UTC
README
##加载 在composer.json中
"require": {
"xiaogouxo/laravel-theme": "^2.1.1"
},
##注册service和facade
在providers中
\Xiaogouxo\LaravelTheme\themeServiceProvider::class,
在aliases中
'MyTheme' =>\Xiaogouxo\LaravelTheme\Facades\MyTheme::class
##发布配置文件 php artisan vendor:publish --provider="Xiaogouxo\LaravelTheme\themeServiceProvider" --tag=config
##使用 Check the Documentation