Skip to content

Commit

Permalink
Update readme-laravel.md
Browse files Browse the repository at this point in the history
  • Loading branch information
midnite81 authored Feb 5, 2022
1 parent c22b961 commit 6e2d27f
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions readme-laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,25 @@
To integrate this package more fully with Laravel 5, add the Prowl service provider to the list of service providers
in `app/config/app.php`.

'providers' => [

Midnite81\Prowl\ProwlServiceProvider::class
];
```php
'providers' => [
Midnite81\Prowl\ProwlServiceProvider::class
];
```

Add the `Prowl` facade to your aliases array.

'aliases' => [

'Prowl' => Midnite81\Prowl\Facades\Prowl::class,
];
```php
'aliases' => [
'Prowl' => Midnite81\Prowl\Facades\Prowl::class,
];
```

Publish the Prowl config file using
`php artisan vendor:publish --provider="Midnite81\Prowl\ProwlServiceProvider"`

```sh
php artisan vendor:publish --provider="Midnite81\Prowl\ProwlServiceProvider"
```

## Configuration File

Once you have published the config files, you will find a `prowl.php` file in the `config` folder. You should
Expand Down

0 comments on commit 6e2d27f

Please sign in to comment.