PHP code example of daikazu / simple-token-middleware

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

    

daikazu / simple-token-middleware example snippets


Daikazu\SimpleTokenMiddleware\ServiceProvider::class,

Daikazu\SimpleTokenMiddleware\Facades\SimpleTokenMiddleware::class,


Route::post('/api/my-protected-route', 'Controller@index')->middleware('simple.token');

bash
php artisan vendor:publish --provider="Daikazu\SimpleTokenMiddleware\ServiceProvider" --tag="config"