Master Data Classification - mymagic/open_hub GitHub Wiki

Classification aim to be the ultimate categorization you need. Unlike industry, persona, sdg, cluster, impact; it is not hardcoded and can be extends infinitely thru group.

Query by group code:

<?php $trls = $organization->getClassificationsByGroup('trl'); if (!empty($trls)): ?>
<div class="mt-4">
    <h5 class="text-muted text-uppercase"><?php echo Yii::t('app', 'TRL') ?></h5>
    <div>
        <?php foreach ($trls as $trl) : ?>
            <span class="label"><?php echo $trl->renderTitle() ?></span>
        <?php endforeach; ?>
    </div>
</div>
<?php endif; ?>
⚠️ **GitHub.com Fallback** ⚠️