April 28, 2024 / 1 min read Forget Cache on Create/Update laravel 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'); }); }}