1234567891011121314151617 |
- <?php
- declare(strict_types=1);
- namespace App\Controller;
- use Hyperf\HttpServer\Annotation\AutoController;
- use Hyperf\View\RenderInterface;
- #[AutoController]
- class ViewController
- {
- public function index(RenderInterface $render)
- {
- return $render->render('index', ['name' => 'Hyperf']);
- }
- }
|