You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
377 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. <?php
  2. namespace App\Http\Controllers\Wap;
  3. use App\Http\Controllers\CommonController;
  4. class IndexController extends CommonController
  5. {
  6. /**
  7. * Create a new controller instance.
  8. *
  9. * @return void
  10. */
  11. public function __construct()
  12. {
  13. //$this->middleware('guest')->except('logout');
  14. }
  15. public function index()
  16. {
  17. dd('wap/index');
  18. }
  19. }