app.php 202 B

1234567891011
  1. <?php
  2. use think\facade\Route;
  3. Route::get('xx', function (){
  4. echo 'hello world';
  5. });
  6. Route::group('city',function (){
  7. Route::get('hello','index/hello');
  8. Route::get('test','index/test');
  9. });