diff --git a/app/Http/Livewire/Waitlist/Index.php b/app/Http/Livewire/Waitlist/Index.php
index 06d224afe..72d16b682 100644
--- a/app/Http/Livewire/Waitlist/Index.php
+++ b/app/Http/Livewire/Waitlist/Index.php
@@ -10,6 +10,7 @@ use Livewire\Component;
class Index extends Component
{
public string $email;
+ public int $users = 0;
public int $waitingInLine = 0;
protected $rules = [
@@ -22,6 +23,7 @@ class Index extends Component
public function mount()
{
$this->waitingInLine = Waitlist::whereVerified(true)->count();
+ $this->users = User::count();
if (isDev()) {
$this->email = 'waitlist@example.com';
}
diff --git a/resources/views/livewire/waitlist/index.blade.php b/resources/views/livewire/waitlist/index.blade.php
index ad6e30508..833193b58 100644
--- a/resources/views/livewire/waitlist/index.blade.php
+++ b/resources/views/livewire/waitlist/index.blade.php
@@ -23,7 +23,8 @@