Last active
August 1, 2017 06:21
-
-
Save farukyildiz/0eeb3175efc5b0a54668bdcc26d71e53 to your computer and use it in GitHub Desktop.
Use Forms In Laravel Framework
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
First Step | |
- Terminal | |
- composer require "laravelcollective/html":"^5.2.0" ( go to project directory by cd ) | |
---------------------------- | |
Second Step | |
---------------------------- | |
- App Folder Update => config/app.php | |
- 'providers' => [ | |
. | |
. | |
. | |
Collective\Html\HtmlServiceProvider::class, | |
. | |
. | |
. | |
] | |
- 'aliases' => [ | |
. | |
. | |
. | |
'Form' => Collective\Html\FormFacade::class, | |
'Html' => Collective\Html\HtmlFacade::class, | |
. | |
. | |
. | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment