<div class="library-container">
    <div class="library-wrapper">
        <?php foreach($libraries as $library): ?>
            <?php if($library->title): ?>
                <div class="library-item">
                    <h5>
                        <?php echo $library->title; ?>

                    </h5>
                    <a target="_blank" href="<?php echo e($library->link); ?>">
                        <img alt="" src="<?php echo getMediaUrl($library->cover->first()->filename, 'archive_cover'); ?>">
                    </a>
                </div>
            <?php endif; ?>
        <?php endforeach; ?>
    </div>
</div>
