- <?php
- namespace App\Models;
- class SysConfig extends SoftBaseModel
- {
- public function getHotlineNumberPicAttribute()
- {
- return isset($this->attributes['hotline_number_pic']) ? config('console.pic_path').$this->attributes['hotline_number_pic'] : NULL;
- }
- }
|