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: BannerBottomTextObserver.php
<?php namespace App\Observer\Frontend; use App\Models\Section\BannerBottomText; use Illuminate\Support\Facades\Cache; class BannerBottomTextObserver { public function updated(BannerBottomText $bannerBottomText): void { Cache::forget(BannerBottomText::$cacheKey); BannerBottomText::getCache(static function () { return BannerBottomText::query()->select('text')->pluck('text')->toArray(); }); } }
Save
Cancel