ViewController.php 329 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Controller;
  4. use Hyperf\HttpServer\Annotation\AutoController;
  5. use Hyperf\View\RenderInterface;
  6. #[AutoController]
  7. class ViewController
  8. {
  9. public function index(RenderInterface $render)
  10. {
  11. return $render->render('index', ['name' => 'Hyperf']);
  12. }
  13. }