vohinc/km-socialite

There is no license information available for the latest version (v1.0.9) of this package.

KM socialite plugin

v1.0.9 2020-04-04 14:16 UTC

This package is auto-updated.

Last update: 2024-05-04 23:20:13 UTC


README

Route::group(['namespace' => 'Auth'], function () {
    // Authentication Routes.
    Route::get('/login', 'LoginController@oauth')->name('user.login');
    Route::get('/oauth/callback', 'LoginController@login');
    Route::get('/logout', 'LoginController@logout')->name('user.logout');
});