I have create a admin module in the yii and I want the module use the customized layout.
so I placed the css and js file in protected/module/admin/assets,how can I include the css and js file in this folder?
and now I have another problem:
I have put the file in the protected/modules/admin/css/assetsbootstrap.min.css folder,and I can not include it anyway,even I use the absolute path.I also try it in the other way like:
<link rel="stylesheet" href="<?php echo Yii::app()->baseUrl;?>/protected/modules/admin/css/assetsbootstrap.min.css" />
is this way does not work in the module?