belongsTo('App\Category'); } public function manufacturer() { return $this->belongsTo('App\Manufacturer'); } /* public function setTitleAttribute($value) { $this->attributes['title'] = $value; $this->attributes['slug'] = str_slug($value); } */ public function scopeFeatured($query) { return $query->whereFeatured(1); } }