minor changes in comments

This commit is contained in:
elvira
2026-09-04 13:19:24 +03:00
parent e57bfe3d42
commit 9abe45c5f7
3 changed files with 5 additions and 12 deletions
+1 -3
View File
@@ -13,8 +13,6 @@ public function show(string $locale)
{
$query = trim((string) request()->query('q', ''));
// Nothing to search for — send them to the all-products page rather than
// render an empty results page.
if ($query === '') {
return redirect()->route('products');
}
@@ -30,4 +28,4 @@ public function show(string $locale)
return view('search.index', [...$data, 'query' => $query]);
}
}
}