| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Module\Dev\Controllers;
- use App\Http\Controllers\Controller;
- use Illuminate\Http\Request;
- class DevController extends Controller
- {
- /**
- * 构造函数
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * 首页
- */
- public function index()
- {
- return $this->success('Dev模块运行正常');
- }
- }
|