Last active
October 12, 2015 00:39
-
-
Save webarthur/400086fc6286682f47dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add this to your composer.json : | |
"laravelcollective/html": "~5.0" | |
# then update composer: | |
composer update | |
# then add providers in config/app.php | |
'Collective\Html\HtmlServiceProvider', | |
# and finally add two aliases in the same file: | |
'Form' => 'Collective\Html\FormFacade', | |
'Html' => 'Collective\Html\HtmlFacade', | |
# http://laravelcollective.com/docs/5.1/html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment