add test batches

This commit is contained in:
root
2026-06-08 23:45:55 -04:00
parent c792b8be05
commit 8d4d610b82
1480 changed files with 22587 additions and 10762 deletions
+2 -3
View File
@@ -16,8 +16,8 @@ class IpBanQueryService
$query->where('blocked_until', '>', $this->utcNow());
}
if (! empty($filters['search'])) {
$term = '%'.trim((string) $filters['search']).'%';
if (!empty($filters['search'])) {
$term = '%' . trim((string) $filters['search']) . '%';
$query->where('ip_address', 'like', $term);
}
@@ -41,7 +41,6 @@ class IpBanQueryService
if (function_exists('utc_now')) {
return (string) utc_now();
}
return now('UTC')->toDateTimeString();
}
}