Answers for "clear cache swr"

PHP
20

laravel artisan clear cache

//Updated Dec 2020
//laravel artisan clear cache 
php artisan view:clear 
php artisan cache:clear
php artisan route:clear
php artisan config:clear
Posted by: Guest on December-12-2020
0

cordova delete cache

// download this plugin. it reset cache on internal browser
cordova plugin add cordova-plugin-cache-clear

// use this function in index.js or on main html
document.addEventListener('deviceready', function() {
    var success = function(status) {
        alert('Message: ' + status);
    };
    var error = function(status) {
        alert('Error: ' + status);
    };
    window.CacheClear(success, error);
});
Posted by: Guest on November-08-2020

Browse Popular Code Answers by Language