Can you post your full AuthController Code ( or edit your current post with your AuthController for others ) ?
Adding social login using hybrid auth laravel5
Hi I am new to laravel I am trying to add Social login to laravel 5 app. I was able to add it successfully to laravel 4.2.16 but when I am trying the similar setup in 5 its not working. Basically I have added a link to Login Page Login Using Facebook But when I click on it it tries to find route auth/facebookAuth and then fails
Method [missingMethod] does not exist. in compiled.php line 8023 at Controller->__call('missingMethod', array('facebookAuth')) at AuthController->missingMethod('facebookAuth') at call_user_func_array(array(object(AuthController), 'missingMethod'), array('_missing' => 'facebookAuth')) in compiled.php line 8019 at Controller->callAction('missingMethod', array('_missing' => 'facebookAuth')) in compiled.php line 8082 at ControllerDispatcher->call(object(AuthController), object(Route), 'missingMethod') in compiled.php line 8061
below is my routes.php
Route::get('/', 'WelcomeController@index');
Route::get('home', 'HomeController@index');
Route::get('facebookAuth/{auth?}', array("as" => "facebookAuth", 'uses'=>'AuthController@getFacebookLogin')); Route::get('googleAuth/{auth?}', array("as" => "googleAuth", 'uses'=>'AuthController@getGoogleLogin')); Route::get('logout', array("as" => "logout", 'uses'=>'AuthController@getLoggedOut'));
Route::controllers([ 'auth' => 'Auth\AuthController', 'password' => 'Auth\PasswordController',
]);
Please help.
Please or to participate in this conversation.