LogViewer/code/routes/web.php
splin94@yandex.ru 3a4a328d80 -
2023-11-09 20:51:08 +00:00

21 lines
515 B
PHP
Executable File

<?php
use Illuminate\Routing\Router;
/** @var Router $router */
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
$router->get('/', function () {
return view('welcome');
});