Skip to content

Instantly share code, notes, and snippets.

@bitclaw
Forked from fer-ri/helpers.php
Created February 5, 2018 10:09
Show Gist options
  • Save bitclaw/b36c3843cb7f569b0a28490164ce690b to your computer and use it in GitHub Desktop.
Save bitclaw/b36c3843cb7f569b0a28490164ce690b to your computer and use it in GitHub Desktop.
Delete Laravel Cache By Pattern
<?php
foreach (Cache::getMemory() as $cacheKey => $cacheValue)
{
if (strpos($cacheKey, 'mypackage') !== false)
{
Cache::forget($cacheKey);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment