关于Laravel 5 中 Html,Form 安装以及修改使用标签

安装L5中的HTML
在composer.json的require中添加
"illuminate/html": "5.*"

composer update后到

config/app.php中添加

providers中添加
'Illuminate\Html\HtmlServiceProvider'

aliases中添加
'Form'      => 'Illuminate\Html\FormFacade',
'HTML'      => 'Illuminate\Html\HtmlFacade'

即可使用。
使用方式 {!! HTML::script('js/jquery.js') !!}

如果不太适应使用{!! HTML::script() !!}

请到路由文件routes.php中,配置以下代码
Blade::setRawTags('{{', '}}');

即可回归到{{ HTML::script('js/jquery.js') }}

5 个评论

yang_hao

yang_hao

Class 'Illuminate\Html\HtmlServiceProvider' not found
我的Illuminate地下没有Html文件 这个怎么处理 laravel5.0
2015-09-16 10:24
yang_hao

yang_hao

懂了.... 没有好好看文档 谢谢版主....
2015-09-16 10:30
shineforce

shineforce 回复 yang_hao

先composer update下
2015-11-17 11:09
你的和风i

你的和风i 回复 yang_hao

为什么我看不懂 ······我illuminate下也没有html文件 怎么处理···laravel5.2
2016-06-12 21:15
你的和风i

你的和风i

Class 'Illuminate\Html\HtmlServiceProvider' not found
我的Illuminate地下没有Html文件 这个怎么处理 laravel5.2
2016-06-12 21:15

要回复文章请先登录注册