Skip to content

Instantly share code, notes, and snippets.

@farukyildiz
Last active August 1, 2017 06:21
Show Gist options
  • Save farukyildiz/0eeb3175efc5b0a54668bdcc26d71e53 to your computer and use it in GitHub Desktop.
Save farukyildiz/0eeb3175efc5b0a54668bdcc26d71e53 to your computer and use it in GitHub Desktop.
Use Forms In Laravel Framework
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