RechargeChannelGroup.php 566 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Models;
  3. class RechargeChannelGroup extends BaseModel
  4. {
  5. protected $table = 'recharge_channel_group';
  6. protected $fillable = ['name', 'type'];
  7. protected $hidden = [];
  8. // 修改器:将逗号分隔字符串转为数组
  9. public function getTypeAttribute($value)
  10. {
  11. return $value ? explode(',', $value) : [];
  12. }
  13. // 设置器:将数组转为逗号分隔字符串
  14. public function setTypeAttribute($value)
  15. {
  16. $this->attributes['type'] = is_array($value) ? implode(',', $value) : $value;
  17. }
  18. }