Files
backend/app/Controller/admin/DashboardController.php
2025-06-18 10:31:43 +08:00

17 lines
383 B
PHP
Executable File

<?php
namespace App\Controller\admin;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\RequestMapping;
use Hyperf\View\RenderInterface;
#[Controller]
class DashboardController
{
#[RequestMapping(path: '', methods: 'get')]
public function index(RenderInterface $render)
{
return $render->render('dashboard');
}
}