ConfigObserver.php 669 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Observers;
  3. use App\Models\Config;
  4. use Cache;
  5. use Illuminate\Support\Arr;
  6. class ConfigObserver
  7. {
  8. public function updated(Config $config): void
  9. {
  10. // 更新系统参数缓存
  11. Cache::tags('sysConfig')->put($config->name, $config->value ?? 0);
  12. // 如果在线支付方式出现变动,改变 在线支付 设置状态
  13. if (Arr::exists(['is_AliPay', 'is_QQPay', 'is_WeChatPay', 'is_otherPay'], $config->name)) {
  14. $value = !empty(array_filter(Cache::many(['is_AliPay', 'is_QQPay', 'is_WeChatPay', 'is_otherPay'])));
  15. Cache::tags('sysConfig')->put('is_onlinePay', $value);
  16. }
  17. }
  18. }