where('post_id', $this->id)->where('type', 'article')->first(); } public function likes_count() { return Like::where('post_id', $this->id)->where('type', 'article')->where('status', 1)->count(); } }