PHP code example of codeforyou / laravel-jwt

1. Go to this page and download the library: Download codeforyou/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/ */

    

codeforyou / laravel-jwt example snippets


php artisan vendor:publish --provider="Codeforyou\Auth\Providers\JwtProvider"

'jwt' => \Codeforyou\Auth\Middleware\JwtMiddleware::class,



return [
    'secret' => substr(explode(':', env('APP_KEY'))[1], 0, 32),

    'expires_in' => 7200,

    'auth' => [
        'model' => App\User::class,
        'primary_key' => 'id'
    ]
];


Route::middleware(['jwt'])->group(function () {
    Route::get('/test2', 'TestController@test2');
});