常用的Laravel 5 package (HTML/Form)

Laravel HTML/Form

"require": {
    "laravelcollective/html": "~5.0"
}

更新

composer update

在App/config.php中,设置如下

'providers' => [
    'Collective\Html\HtmlServiceProvider',
    // ...  ],
aliases' => [
    // ...      'Form' => 'Collective\Html\FormFacade',
      'Html' => 'Collective\Html\HtmlFacade',
    // ...  ],

 具体使用访问

http://laravelcollective.com/docs/5.0/html#installation

你可能感兴趣的:(laravel,5,HTML/Form)