SysConfig.php 379 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Models\System;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SysConfig extends Model
  5. {
  6. protected $connection = 'mysql';
  7. protected $table = 'sys_config';
  8. protected $primaryKey = 'rid';
  9. public $timestamps = false;
  10. protected $guarded = [];
  11. public function getConfigValAttribute($val)
  12. {
  13. return json_decode($val);
  14. }
  15. }