12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- class Scale extends SoftBaseModel
- {
- protected $casts = ['comment_tag'=>'array'];
- protected $fillable = [
- 'title',
- 'pic',
- 'third_id',
- 'comment_tag',
- 'rank',
- 'second_id'
- ];
-
- 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');
- }
- }
|