diff options
| author | grothedev <grothedev@gmail.com> | 2024-12-01 02:55:07 -0600 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2024-12-01 02:55:07 -0600 |
| commit | d9f11923c23c755f4ec0bd51bce540718a1126b5 (patch) | |
| tree | 880464e98868da8db3bd9d7f2d94e3b957ea93cb /routes | |
| parent | f6d43e39952f3327a094f8d7e0f20d0992113909 (diff) | |
nodejs stuff to laravel
Diffstat (limited to 'routes')
| -rwxr-xr-x | routes/web.php | 6 |
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 |
