| 12345678910111213141516171819202122232425262728293031 | <?php/** *   *  @author  Mike <m@9026.com> *  @version    1.0 *  @date 2015年10月12日 * */namespace App\Http\Controllers\Teacher\Base;use App\Http\Controllers\Teacher\Controller;use App\Services\Base\Tree;use App\Services\Base\BaseArea;use App\Services\Admin\Menus;use App\Services\Admin\Acl;use Illuminate\Support\Facades\Auth;class IndexController extends Controller{    public function __construct()    {        parent::__construct();    }    function index() {        return view('teacher.base.index.index',compact('menus'));    }    function welcome() {        return view('teacher.base.index.welcome');    }}
 |