Scale.php 396 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. class Scale extends SoftBaseModel
  4. {
  5. protected $casts = ['comment_tag'=>'array'];
  6. public function getPicAttribute()
  7. {
  8. return isset($this->attributes['pic']) ? config('console.pic_path').$this->attributes['pic'] : NULL;
  9. }
  10. public function thirdScale(){
  11. return $this->belongsTo(ThirdScale::class, 'third_id', 'id');
  12. }
  13. }