From ae4cdc5efcd82d7a5bf9d99912fc903a691aba21 Mon Sep 17 00:00:00 2001 From: F4ilji Date: Thu, 2 Jul 2026 16:45:59 +0500 Subject: [PATCH] fix: correct path to API routes file --- routes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.php b/routes/api.php index 9e08252..0250886 100755 --- a/routes/api.php +++ b/routes/api.php @@ -3,5 +3,5 @@ use Illuminate\Support\Facades\Route; Route::middleware('auth:web')->group(function () { - require __DIR__.'/../Containers/Dashboard/UI/API/Routes/api.php'; + require __DIR__.'/../app/Containers/Dashboard/UI/API/Routes/api.php'; });