'render']; public function render() { $this->followers = $this->user->followers; $this->following = $this->user->following; return view('livewire.user.profile'); } public function setSection(string $name) { $this->section = $name; } public function message() { // todo: not implemented yet } public function followUser(User $user) { auth()->user()->follow($user); } public function unfollowUser(User $user) { auth()->user()->unfollow($user); } }