user()->follow($this->profileUserId); $this->isFollowing = true; $this->dispatch('user-follow-change'); } /** * Action to unfollow a user. */ public function unfollow(): void { auth()->user()->unfollow($this->profileUserId); $this->isFollowing = false; $this->dispatch('user-follow-change'); } /** * Render the component. */ public function render(): View { return view('livewire.user.follow-buttons'); } }