1. Go to this page and download the library: Download framgia/laravel-jwt 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/ */
'guards' => [
// ...
'jwt' => [
'driver' => 'jwt',
'provider' => 'users', // May be replaced with preferred provider.
],
// ...
],
Auth::guard('jwt');
app('auth')->guard('jwt');
// Retrieve new authentication token by user credentials
$token = $guard->attempt($credentials);
// Blacklist current user token to discard authentication
$guard->logout();
// ...
use Framgia\Jwt\Contracts\ProvidesCredentials;
// ...
class User implements Authenticatable, ProvidesCredentials
{
// ...
/**
* Get credentials for JWT.
*
* @return array
*/
public function getCredentials()
{
return [
'admin' => $this->isAdmin(),
'role' => $this->role,
];
}
// ...
}