dym-sh/routes/web.php

17 lines
237 B
PHP
Raw Normal View History

2024-08-06 14:12:25 +02:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
2024-08-06 16:39:08 +02:00
return view('index');
});
Route::get('/about', function () {
return view('about');
});
Route::get('/code', function () {
return view('code');
2024-08-06 14:12:25 +02:00
});