Open routes file. Paste the following code in:
Route::get('helloworld', function () {
return '<h1>Hello World</h1>';
});
after going to route localhost/helloworld
it displays Hello World.
The routes file is located:
For Web
routes/web.php
For APIs
routes/api.php
app/Http/routes.php
app/routes.php