'Заголовок', // 'entity' => 'Сущность', // 'slug' => 'Slug', // 'status' => 'Статус', // ] return [ 'card_program_id' => 'Программа', 'slug' => 'Slug', 'title' => 'Название', 'value' => 'Условия', 'type' => 'Тип', 'status' => 'Статус', ]; } /** * @return string[] */ public static function getStatus(): array { return [ self::DISABLE_STATUS => "Не активный", self::ACTIVE_STATUS => "Активный", ]; } }