Skip to content

Commit

Permalink
Doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sohelamin committed Oct 10, 2017
1 parent 20f303e commit b64d39c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ public function register()
}
```

And since, we're using `laravelcollective/html` as dependency you should add its service provider as well. Check the [docs](https://laravelcollective.com/docs/master/html) for details.
And since, we're using `laravelcollective/html` as dependency you should add its service provider in the `config/app.php` file. Check the [docs](https://laravelcollective.com/docs/master/html) for details.

```php
'providers' => [
//...

Collective\Html\HtmlServiceProvider::class,
],

'aliases' => [
//...

'Form' => Collective\Html\FormFacade::class,
'HTML' => Collective\Html\HtmlFacade::class,
],
```

[← Back to index](README.md)

0 comments on commit b64d39c

Please sign in to comment.