From b64d39c7997af0bfc32d45586dd78e74c395b216 Mon Sep 17 00:00:00 2001 From: Sohel Amin Date: Tue, 10 Oct 2017 12:04:39 +0600 Subject: [PATCH] Doc changes --- doc/installation.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/doc/installation.md b/doc/installation.md index 519a139..2b66cc6 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -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)