Skip to content
This repository has been archived by the owner on Feb 26, 2018. It is now read-only.

Commit

Permalink
Update config path references in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Feb 7, 2015
1 parent 2665f61 commit f4967ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ composer require adamwathan/bootforms

If you are using Laravel 4 or 5, you can get started very quickly by registering the included service provider.

Modify the `providers` array in `app/config/app.php` to include the `BootFormsServiceProvider`:
Modify the `providers` array in `config/app.php` to include the `BootFormsServiceProvider`:

```php
'providers' => array(
'providers' => [
//...
'AdamWathan\BootForms\BootFormsServiceProvider'
),
],
```

Add the `BootForm` facade to the `aliases` array in `app/config/app.php`:
Add the `BootForm` facade to the `aliases` array in `config/app.php`:

```php
'aliases' => array(
'aliases' => [
//...
'BootForm' => 'AdamWathan\BootForms\Facades\BootForm'
),
],
```

You can now start using BootForms by calling methods directly on the `BootForm` facade:
Expand Down

0 comments on commit f4967ba

Please sign in to comment.