SysConfig.php 274 B

1234567891011
  1. <?php
  2. namespace App\Models;
  3. class SysConfig extends SoftBaseModel
  4. {
  5. public function getHotlineNumberPicAttribute()
  6. {
  7. return isset($this->attributes['hotline_number_pic']) ? config('console.pic_path').$this->attributes['hotline_number_pic'] : NULL;
  8. }
  9. }