PHP code example of dexperts / authentication
1. Go to this page and download the library: Download dexperts/authentication 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/ */
dexperts / authentication example snippets
use Dexperts\Authentication\Auth;
Route::get('/auth/{name}', function($sName) {
$oAuth = new Auth();
return view('welcome', [
'name' => $oAuth->call($sName)
]);
});
<?= $name;
web.php
welcome.blade.php