Back

/ 1 min read

Forget Cache on Create/Update

Forget/Refresh cache whenever a record is created/updated.

use Illuminate\Support\Facades\Cache;
class Post extends Model
{
protected static function booted()
{
static::saved(function () {
Cache::forget('posts');
});
}
}