This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-mcp/routes/web.php
2026-01-26 20:49:02 +00:00

7 lines
108 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});