18 lines
225 B
PHP
Raw Normal View History

2025-02-28 09:29:43 +08:00
<?php
namespace addons\example\controller;
use think\addons\Controller;
class Index extends Controller
{
protected $layout = 'default';
public function index()
{
return $this->view->fetch();
}
}