summaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorgrothedev <grothedev@gmail.com>2024-12-01 02:55:07 -0600
committergrothedev <grothedev@gmail.com>2024-12-01 02:55:07 -0600
commitd9f11923c23c755f4ec0bd51bce540718a1126b5 (patch)
tree880464e98868da8db3bd9d7f2d94e3b957ea93cb /routes
parentf6d43e39952f3327a094f8d7e0f20d0992113909 (diff)
nodejs stuff to laravel
Diffstat (limited to 'routes')
-rwxr-xr-xroutes/web.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php
index 86a06c5..096daa7 100755
--- a/routes/web.php
+++ b/routes/web.php
@@ -3,5 +3,9 @@
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
- return view('welcome');
+ return view('home');
});
+
+Route::get('/env', 'SiteController@env');
+
+Route::get('/dq', 'SiteController@duneQuote'); \ No newline at end of file