user->favorites()->withType(Post::class)->count(); $favorite_comments = $this->user->favorites()->withType(Comment::class)->count(); return view('livewire.pages.profile', [ 'favorite_posts' => $favorite_posts, 'favorite_comments' => $favorite_comments ])->title($this->user->name); } }