Skip to content

Commit

Permalink
active clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Jul 14, 2023
1 parent 01830e3 commit 05f3366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Widgets/ServerUserActive.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ServerUserActive extends BaseWidget
protected function getCards(): array
{
return [
Card::make('Active clients', ServerUser::where('stop', null)->count()),
Card::make('Active clients', ServerUser::whereNull('stop')->whereNotNull('start')->count()),
];
}
}

0 comments on commit 05f3366

Please sign in to comment.