19 lines
833 B
PHP
19 lines
833 B
PHP
![]() |
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | CatchAdmin [Just Like ~ ]
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: JaguarJack [ njphper@gmail.com ]
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
|
|||
|
// you should use `$router`
|
|||
|
$router->group(function () use ($router){
|
|||
|
// 域名管理
|
|||
|
$router->resource('domain', '\catchAdmin\domain\controller\Domain');
|
|||
|
// 域名解析管理
|
|||
|
})->middleware('auth');
|
|||
|
|