Browse Source

redirect root route to backend admin

parent
commit
93f41cad9a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      routes/web.php

+ 1
- 1
routes/web.php View File

@@ -3,5 +3,5 @@
3 3
 use Illuminate\Support\Facades\Route;
4 4
 
5 5
 Route::get('/', function () {
6
-    return view('welcome');
6
+    return redirect("admin");
7 7
 });