feat(search): enable query logging for global search caching

This commit is contained in:
Andras Bacsai
2025-09-19 10:22:24 +02:00
parent d8d316b5f8
commit 575793709b

View File

@@ -69,6 +69,7 @@ class GlobalSearch extends Component
$cacheKey = self::getCacheKey(auth()->user()->currentTeam()->id);
$this->allSearchableItems = Cache::remember($cacheKey, 300, function () {
ray()->showQueries();
$items = collect();
$team = auth()->user()->currentTeam();