heihachi88
9/30/2014 - 7:24 AM

Laravel 5. Add HTML and Form class: https://laravelcollective.com/docs/5.2/html

Laravel 5. Add HTML and Form class: https://laravelcollective.com/docs/5.2/html

"require": {
    "laravelcollective/html": "5.2.*"
}

composer update
#Service providers

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

#Aliases

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