8 lines
359 B
PHP
8 lines
359 B
PHP
<?php $__currentLoopData = $post->tags; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tag): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<?php if($tag->type == 'abteilung'): ?>
|
|
<?php echo e($tag->name); ?>
|
|
|
|
<?php break; ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|