where("status", static::STATUS_PENDING); } function scopePublished($query) { $query->where("status", static::STATUS_PUBLISHED); } function comments() { return $this->morphMany(Comment::class, "commentable"); } }