55 lines
2.2 KiB
PHP
55 lines
2.2 KiB
PHP
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson("models.department"); ?>:</th>
|
|
<td>
|
|
<?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 endif; ?>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.description'); ?>:</th>
|
|
<td><?php echo e($post->title); ?> (<?php echo e($post->content->kurzbezeichnung); ?>)</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.short designation'); ?>:</th>
|
|
<td><?php echo e($post->content->kurzbezeichnung); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.radio call'); ?>:</th>
|
|
<td><?php echo e($post->content->funkrufname); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.crew'); ?>:</th>
|
|
<td><?php echo e($post->content->mannschaft); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.manufacturer'); ?>:</th>
|
|
<td><?php echo e($post->content->hersteller); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.composition'); ?>:</th>
|
|
<td><?php echo e($post->content->aufbau); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.power'); ?>:</th>
|
|
<td><?php echo e($post->content->leistung); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.construction year'); ?>:</th>
|
|
<td><?php echo e($post->content->baujahr); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.weight'); ?>:</th>
|
|
<td><?php echo e($post->content->gewicht); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope=""row><?php echo app('translator')->getFromJson('models.operation'); ?>:</th>
|
|
<td><?php echo e($post->content->einsatz); ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|