Skip to content

Instantly share code, notes, and snippets.

@lam0819
Created March 24, 2021 02:47
Show Gist options
  • Save lam0819/74802a0e50d3ce80e36f0d4d14975a3f to your computer and use it in GitHub Desktop.
Save lam0819/74802a0e50d3ce80e36f0d4d14975a3f to your computer and use it in GitHub Desktop.
Simple Clear Cache in Laravel route
Route::get('/clear-cache', function() {
Artisan::call('cache:clear');
return "Cache is cleared";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment