how to remove the cache from live server in laravel code example
Example: how to manually remove cache in laravel
//You can call an Artisan command outside the CLI.
Route::get('/clear-cache', function() {
$exitCode = Artisan::call('cache:clear');
// return what you want
});