About.php 252 B

123456789101112131415161718
  1. <?php
  2. namespace app\home\controller;
  3. use app\home\HomeBaseController;
  4. class About extends HomeBaseController
  5. {
  6. protected function init()
  7. {
  8. $this->tab = 'about';
  9. }
  10. public function index()
  11. {
  12. return view();
  13. }
  14. }