Laravel主题切换 — teepluss/theme
程序员文章站
2022-05-14 21:06:10
...
一、在项目中的composer.json中加入"teepluss/theme": "^2.0"
,然后运行composer update
依赖包网址:teepluss/theme
二、在config/app.php中加入以下代码
'providers' => [
Teepluss\Theme\ThemeServiceProvider::class,
],
'aliases' => [
'Theme' => Teepluss\Theme\Facades\Theme::class,
],
三、最后输入php artisan vendor:publish
上一篇: PHP盛宴——常用函数集锦_PHP教程
下一篇: phpexcel入门