PHP code example of flc / laravel-middleware-cache-response
1. Go to this page and download the library: Download flc/laravel-middleware-cache-response 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/ */
flc / laravel-middleware-cache-response example snippets
'cache.response' => \Flc\Laravel\Http\Middleware\CacheResponse::class,
// cache.response 命名随意,你开心就好
Route::get('/', function () {
return view('welcome');
})->middleware('cache.response');
Route::get('/', function () {
return view('welcome');
})->middleware('cache.response:20'); // 指定缓存时间20分钟