'Заголовок', 'parent_id' => 'Родительский пункт меню', 'icon_file' => 'Путь к иконке', 'icon_font' => 'Иконка', 'url' => 'URL', 'status' => 'Статус', 'slug' => 'Slug', 'priority' => 'Приоритет' ]; } public static function getChild(int $id) { $collection = Menu::where("parent_id", $id)->get(); if (!$collection->isEmpty()){ return $collection; } return false; } /** * @return string[] */ public static function getStatus(): array { return [ self::DISABLE_STATUS => "Не активный", self::ACTIVE_STATUS => "Активный", ]; } }