123456789101112131415161718192021222324 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace app\enterprise\controller;
- use app\enterprise\common\EnterpriseController;
- /**
- * Description of TalentLibrary
- *
- * @author sgq
- */
- class TalentLibrary extends EnterpriseController {
- public function index() {
- return view();
- }
- }
|