Files
amikhaylov af933e8397 init commit
2026-04-28 22:22:46 +03:00

12 lines
162 B
PHP

<?php
namespace App\Http\Controllers;
class MainController extends Controller
{
public function index()
{
return $this->render('home');
}
}