where('id', $this->category_id)->first(); return blank($cat) ? '' : $cat->name; } // 定义一个public方法访问图片或文件 public function getFullCoverAttribute() { return getFullPath($this->cover, 'admin'); } public function category() { return $this->belongsTo(ArticleCategory::class, 'category_id', 'id'); } }