'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'); } }