安裝

自 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 上提供完整的文件