Laravel中的html和Form

需要用到的package laravelcollective/html

先到目录下注册

composer  require  "laravelcollective/html"

再在 config\app.php 下的 providers 添加

Collective\Html\HtmlServiceProvider::class,

再到 aliases 添加

'Form'=>Collective\Html\FormFacade::class,

'Html'=>Collective\Html\HtmlFacade::class,

使用方法到文档中查看

你可能感兴趣的:(Laravel中的html和Form)