fixed update check

This commit is contained in:
Cüneyt Şentürk 2020-03-03 16:09:05 +03:00
parent 6f534dc308
commit ee153d3d79

View File

@ -12,8 +12,8 @@ class Info
{
return array_merge(static::versions(), [
'api_key' => setting('apps.api_key'),
'companies' => Company::all()->count(),
'users' => User::all()->count(),
'companies' => Company::count(),
'users' => User::count(),
]);
}