PHP code example of kamrul-haque / laravel-passport-auth
1. Go to this page and download the library: Download kamrul-haque/laravel-passport-auth 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/ */
kamrul-haque / laravel-passport-auth example snippets
php artisan vendor:publish --tag="laravel-passport-auth"
php artisan migrate
// routes/api.php
// routes/api.php
Route::group(['middleware' => 'auth:api'], function () {
// your routes
});
// app\Http\Kernel.php
protected $routeMiddleware = [
// existing middlewares
'restrict-request-ip' => \App\Http\Middleware\RestrictRequestIP::class,
];
// routes/api.php
Route::group(['middleware' => 'restrict-request-ip'], function () {
// your routes
});