Open AEK-BKF opened 6 years ago
Have you included the service provider inside config/app.php.
'providers' => [
...
Hootlex\Friendships\FriendshipsServiceProvider::class,
...
];
AH ok! I thought no need for that because I'm using Laravel 5.6.20 ! Thanks :)
I made a pull request to add auto discovery 1 hour ago (Auto discovery PR). I think @hootlex will review soon.
if you want to check if a package is "auto-discovery ready", you can check the composer.json. It's "auto-discovery ready" if you can see :
"extra": {
"laravel": {
"providers": [
"Namespace\\Of\\PackageServiceProvider"
]
}
},
Hi, Thanks for this nice package,
I tried to install the package, but :
php artisan vendor:publish --provider="Hootlex\Friendships\FriendshipsServiceProvider"
doesn't work ! So I copy config and migration files manually, and I had to rename the friendship creation table before the group one. I works fine ! Try to fix it :)