安装

自 Laravel 5 以来,HTML 和 Form Builder 不是核心组件,因此我们需要单独安装它:

composer require laravelcollective/html "~5.0"

最后在 config/app.php 中我们需要注册服务提供者,并且外观别名如下:

'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,        
    // ...
],

'aliases' => [
   // ...
  'Form' => Collective\Html\FormFacade::class,
  'Html' => Collective\Html\HtmlFacade::class,
   // ...
],

表格和 HTML 上提供完整的文档