summaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php
new file mode 100644
index 0000000..84dd634
--- /dev/null
+++ b/routes/web.php
@@ -0,0 +1,6 @@
+<?php
+
+use Illuminate\Support\Facades\Route;
+use App\Http\Controllers\HomeController;
+
+Route::get('/', [HomeController::class, 'index']);