cobazaka/app/Controllers/Home copy 2.php

12 lines
153 B
PHP
Raw Permalink Normal View History

2026-04-15 15:44:53 +07:00
<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
2026-04-15 16:01:42 +07:00
return view('fqwefwe');
2026-04-15 15:44:53 +07:00
}
}