Updated counts to use Eloquent

This commit is contained in:
cp6 2023-08-18 19:28:53 +10:00
parent 65f0474ebe
commit e100203331
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class DNS extends Model
public static function dnsCount() public static function dnsCount()
{ {
return Cache::remember('dns_count', now()->addMonth(1), function () { return Cache::remember('dns_count', now()->addMonth(1), function () {
return DB::table('d_n_s')->count(); return DNS::count();
}); });
} }

View File

@ -41,7 +41,7 @@ class Labels extends Model
public static function labelsCount() public static function labelsCount()
{ {
return Cache::remember('labels_count', now()->addMonth(1), function () { return Cache::remember('labels_count', now()->addMonth(1), function () {
return DB::table('labels')->count(); return Labels::count();
}); });
} }