vnclone/laravel-static-html-cache

store/cache generated responses as a static file
14
Install
composer require vnclone/laravel-static-html-cache
PHP:>=7.0
License:MIT
Last Updated:Jun 22, 2017
Links: GitHub  ·  Packagist
Maintainer: VietSmall

laravel-static-html-cache

store/cache generated responses as a static file

Setup

Add the service provider to the config/app.php provider array

vnclone\LaravelStaticHtmlCache\Provider\LaravelStaticHtmlCacheProvider::class,

Then add the middleware to the end of your Http/Kernel.php middleware array.

protected $middleware = [
   \vnclone\LaravelStaticHtmlCache\Http\Middleware\LaravelStaticHtmlCacheMiddleware::class,
];

Clear the files

To clear all the files manually you can use an artisan task.

php artisan static-html-cache:clear