Hi, I need to pass a parameter subscription when the user signs up using Socialite.
Unfortunately I can't get the parameter called subscription in the controller, if add a other parameter after {social_network} Socialite fail.
Any idea?
//Login with Socialite
Route::get('login/{social_network}/', 'SocialLoginController@redirectToSocialNetwork')->name('login.social')->middleware('guest', 'social_network');
Route::get('login/{social_network}/callback/', 'SocialLoginController@handleSocialNetworkCallback')->middleware('guest', 'social_network');
//My route in blade
{{ route('login.social', ['social_network' => 'google','subscription' => 'TREECCCXXX'])}}"