Feuerwehr-eppingen/resources/views/inc/publish/listStadtanzeiger.blade.php

27 lines
662 B
PHP

@if(count($publications))
@foreach($publications as $department => $platforms)
<div>
<h3>
@lang('models.department') {{ $department }}
</h3>
<div>
@if(key_exists('Stadtanzeiger', $platforms))
@foreach($platforms['Stadtanzeiger'] as $post)
<hr>
<h5>
{{ $post->title }}
</h5>
<p>{!! $post->content !!}</p>
@if(isset($post->image))
<img src="{{ $message->embed($post->image) }}" width="100px"/>
@endif
@endforeach
@else
@lang('admin.No publications planned for today');
@endif
</div>
</div>
@endforeach
@else
@lang('admin.No publications planned for today');
@endif