-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Gareth Cozens edited this page May 2, 2016
·
2 revisions
In the root of your Laravel Project, require the Ivatar package:
composer require cloudratha\ivatar
Add the Service Provider to your config/app.php
'providers' => [
...
Cuzzy\Ivatar\IvatarServiceProvider::class,
],
Publish the Ivatar config file
php artisan vendor:publish --provider="Cuzzy\Ivatar\IvatarServiceProvider"
To use the Facade add the following to config/app.php
'aliases' => [
...
'Ivatar' => Cuzzy\Ivatar\Facades\Ivatar::class,
]