I am learning how to view gmail contacts and following this tutorial. https://mydnic.be/post/how-to-get-all-gmail-contacts-with-laravel-5
I ran the command composer require oriceon/oauth-5-laravel and second step was to add alias and service provider as per the article above.
Finally, I had to run the command php artisan vendor:publish and got the below error
Undefined method Illuminate\Foundation\Application::share()
Is this due to the above package or something in Laravel 5.4 ?
via Helper