summaryrefslogtreecommitdiff
path: root/workbench/routes
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-01-18 20:17:47 +0000
committerSam Light <samlight1994@gmail.com>2025-01-18 20:17:47 +0000
commiteb5c48b58d72d04abb093fceb32db842ec7ab5fb (patch)
tree4cf40914cba238a46dbb99c36d83e2dfb4efc3e0 /workbench/routes
parent7ae6611fbcee86e6dae9890c27da329fa036717f (diff)
Setup testing
Diffstat (limited to 'workbench/routes')
-rw-r--r--workbench/routes/web.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/workbench/routes/web.php b/workbench/routes/web.php
new file mode 100644
index 0000000..86a06c5
--- /dev/null
+++ b/workbench/routes/web.php
@@ -0,0 +1,7 @@
+<?php
+
+use Illuminate\Support\Facades\Route;
+
+Route::get('/', function () {
+ return view('welcome');
+});