Bootstrap 后台模板AdminLTE组件分享 [ 2.0 版本 ]
扩展子yii2-bootstrap,快速搭建一个后台管理面板。
controllers/SiteController.php
class SiteController extends \yii\web\Controller
{
public $layout = '@vendor/cszchen/alte/veiws/main-layout.php';
public function actionIndex()
{
return $this->render('index');
}
}
views/site/index.php
use cszchen\alte\widgets\Box;
$this->title = "Title here!";
Box::begin([
'type' => 'primary',
'title' => 'Box title',
'refreshUrl' => '/userinfo',
'tools' => ['refresh', 'collapse', 'remove'],
'collapsed' => false
]);
echo "cszchen/alte";
Box::end();
screen
cszchen
注册时间:2015-08-03
最后登录:2017-04-21
在线时长:2小时11分
最后登录:2017-04-21
在线时长:2小时11分
- 粉丝4
- 金钱55
- 威望30
- 积分375
共 3 条评论
这样的一个界面,几分钟就能搭起来了
怎么安装 啊?
@skp1100
composer require "cszchen/alte": ">=2.0.0"
View not Found – yii\base\ViewNotFoundException The view file does not exist: /home/wwwroot/default/helloyii/vendor/cszchen/alte/veiws/main-layout.php
一直报这个错,但肯定是有这个文件的
是什么操作系统呢,如果是linux,有没有读权限
楼主写错了,安装后视图目录是views,楼主写的是veiws,我没细看,直接复制上去了。
图片图片图片