mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 04:01:31 +08:00
23 lines
328 B
PHP
23 lines
328 B
PHP
<?php
|
|
|
|
namespace App\Http\Admin\Services;
|
|
|
|
class Index extends Service
|
|
{
|
|
|
|
public function getTopMenus()
|
|
{
|
|
$authMenu = new AuthMenu();
|
|
|
|
return $authMenu->getTopMenus();
|
|
}
|
|
|
|
public function getLeftMenus()
|
|
{
|
|
$authMenu = new AuthMenu();
|
|
|
|
return $authMenu->getLeftMenus();
|
|
}
|
|
|
|
}
|