Skip to content

Version 1.0.3

Latest
Compare
Choose a tag to compare
@MaartenStaa MaartenStaa released this 10 May 19:45

Added a method to clear the cache. Example usage:

Route::get('/clear-cache', function () {
    Route::clearCache(__FILE__);
});

Route::cache(__FILE__, function () {
  // Your cacheable routes here.
});