Laravel 8 检查任意作用域
路由可以使用 scope 中间件来检查当前请求是否拥有指定的 任意 作用域:
Route::get('/orders', function () {
// Access token has either "check-status" or "place-orders" scope...
})->middleware(['auth:api', 'scope:check-status,place-orders']);
路由可以使用 scope 中间件来检查当前请求是否拥有指定的 任意 作用域:
Route::get('/orders', function () {
// Access token has either "check-status" or "place-orders" scope...
})->middleware(['auth:api', 'scope:check-status,place-orders']);