laraturka/nocache

Laravel 无缓存中间件

v1.0.3 2017-09-16 20:28 UTC

This package is not auto-updated.

Last update: 2024-09-24 22:35:29 UTC


README

Laravel 5 无缓存头部中间件

您可以使用它来满足 Laravel 路由或控制器无缓存的需求。

首先,打开您的 app/http/kernel.php 文件,并添加 'nocache' => \Laraturka\Nocache\NoCacheMiddleware::class

然后在 route.php(或 route/web.php)中使用它

Route::group(['prefix' => 'admin', 'middleware' => ['nocache']], function() { //您的代码 }

或者使用多个中间件

Route::group(['prefix' => 'admin', 'middleware' => ['auth', 'acl', 'nocache']], function() { //您的代码 }