Jetstream Modal

What seems to be the problem:
I have a livewire component that loops through active users of a site. In the livewire controller, I have a showModal method that triggers the opening of a modal to show a user profile. The issue I am having is that the only user that will display in the modal is that last entry into the database.
Steps to Reproduce:

Are you using the latest version of Livewire:
Yes
Do you have any screenshots or code examples:
User.php

<?php namespace App\Http\Livewire; use App\Models\User; use Livewire\Component; class Users extends Component { public User $user; public $users; public $modalFormVisable = false; public function showModal(User $user) { $this->user = $user; $this->modalFormVisable = true; } public function mount($user) { $this->user = $user; $this->users = User::where('id', '!=', auth()->id())->get(); } public function render() { return view('livewire.users'); } }