MenuSelect.php 314 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 02/05/2017
  6. * Time: 10:49
  7. */
  8. namespace app\common\models;
  9. class MenuSelect extends Menu
  10. {
  11. public function getTreeAllNodes()
  12. {
  13. return self::where('status', 1)
  14. ->orderBy('sort', 'asc')->get();
  15. }
  16. }