* This source file is subject to the license under the project that is bundled. */ namespace App\Repository\Menu; use App\Model\Menu; class MenuRepository { public function getByIds(array $ids) { return Menu::query()->whereIn('id', $ids)->orderBy('sort', 'desc')->get()->toArray(); } }