diff --git a/routes/web.php b/routes/web.php index 810aa34..e1ef68c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,3 +14,7 @@ Route::get('/', function () { return view('welcome'); }); + +Route::get('/hello', function() { + return 'Hello World'; +});