PHP code example of vohinc / km-socialite

1. Go to this page and download the library: Download vohinc/km-socialite library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vohinc / km-socialite example snippets


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');
});