ok
This commit is contained in:
21
Production/SNIPE-IT/app/Observers/SettingObserver.php
Normal file
21
Production/SNIPE-IT/app/Observers/SettingObserver.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Observers;
|
||||
|
||||
use App\Models\Setting;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
|
||||
class SettingObserver
|
||||
{
|
||||
/**
|
||||
* Listen to the Setting saved event.
|
||||
*
|
||||
* @param Setting $setting
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function saved(Setting $setting)
|
||||
{
|
||||
Cache::forget(Setting::SETUP_CHECK_KEY);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user