LOL1000
0
Q:

limpiar cache en laravel

php artisan cache:clear
php artisan config:clear
php artisan config:cache
0
Cache::put('key', 'value', $seconds);
Cache::rememberForever('users', function () {
    return DB::table('users')->get();
}); 
Cache::get('key');
Cache::has('key');
Cache::pull('key');
0

New to Communities?

Join the community