BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Observer
/
Frontend
📤 Upload
📝 New File
📁 New Folder
Close
Editing: FrontendSectionsStatusObserver.php
<?php namespace App\Observer\Frontend; use App\Models\Frontend\FrontendSectionsStatus; use Illuminate\Support\Facades\Cache; class FrontendSectionsStatusObserver { public function updated(FrontendSectionsStatus $frontendSectionsStatus): void { Cache::forget(FrontendSectionsStatus::$cacheKey); Cache::remember(FrontendSectionsStatus::$cacheKey, FrontendSectionsStatus::$cacheTtl, static function () use ($frontendSectionsStatus) { return $frontendSectionsStatus; }); } }
Save
Cancel