1234567891011121314151617 |
- <?php
- namespace App\Models;
- class Scale extends SoftBaseModel
- {
- protected $casts = ['comment_tag'=>'array'];
-
- public function getPicAttribute()
- {
- return isset($this->attributes['pic']) ? config('console.pic_path').$this->attributes['pic'] : NULL;
- }
-
- public function thirdScale(){
- return $this->belongsTo(ThirdScale::class, 'third_id', 'id');
- }
- }
|