From de2a4d4dac7ab4779e749f7720ac3b444d977d64 Mon Sep 17 00:00:00 2001 From: Alies Lapatsin <5278175+alies-dev@users.noreply.github.com> Date: Sat, 8 Feb 2025 02:30:23 +0400 Subject: [PATCH] Do not use Route root namespace facade root namespace facades are optional and can be disabled on app level. It's preferable to use facades by their real FQCNs as they are available in any app for sure, e.g. `Illuminate\Support\Facades\Route` --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index 245540c8..bed089bf 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,5 +1,7 @@