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

<?php
namespace App\Http\Controllers\Wap;
use App\Http\Controllers\CommonController;
class IndexController extends CommonController
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
//$this->middleware('guest')->except('logout');
}
public function index()
{
dd('wap/index');
}
}