Closed sajaddp closed 6 years ago
We tested it on this version and there was no problem. Please try again under the following link https://github.com/KaveNegar/kavenegar-laravel#laravel-5
Add the Kavenegar\Laravel\ServiceProvider
provider to the providers
array in config/app.php
:
'providers' => [
...
Kavenegar\Laravel\ServiceProvider::class,
],
Then add the facade to your aliases
array :
'aliases' => [
...
'Kavenegar' => Kavenegar\Laravel\Facade::class,
],
Finally, publish the config file with
php artisan vendor:publish --provider="Kavenegar\Laravel\ServiceProviderLaravel5"
.
You'll find it at config/kavenegar.php
.
also kavenegar-examples-laravel repo upgraged to laravel v5.6 https://github.com/KaveNegar/kavenegar-examples-laravel
Hi, This command
php artisan vendor:publish --provider="Kavenegar\Laravel\ServiceProviderLaravel5"
in L56 returnsPublishing complete.
But does not create thekavenegar.php
at config directory.What should I do now?