Microweber\Utils\Adapters\Cache\LaravelCache::delete PHP Method

delete() public method

Deletes cache for given $cache_group recursively.
public delete ( string $cache_group = 'global' ) : boolean
$cache_group string (default is 'global') - this is the subfolder in the cache dir.
return boolean
    public function delete($cache_group = 'global')
    {
        $cache_group = $this->cache_group($cache_group);
        if (!$this->support_tags) {
            return;
        }
        return Cache::tags($cache_group)->flush();
    }