芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/Modules/Menu/Entities/Menus.php
table = config('menu.table_prefix') . config('menu.table_name_menus'); } public static function byName($name) { return self::where('name', '=', $name)->first(); } public function items() { return $this->hasMany(MenuItems::class, 'menu')->with('child')->where('parent', 0)->orderBy('sort', 'ASC'); } }