<?php
//routes/web.php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return 'hello world';
});
hello world
<?php
//routes/web.php
use Illuminate\Support\Facades\Route;
Route::get('/contact', function () {
return 'Contact';
});