@if ($item->published_at)
@endif
@if ($item->author)
{{ $item->author }}
@endif
@if ($item->sector)
{{ $item->sector->name }}
@endif
@if ($item->thumbnail)
@endif
@if ($item->short_description)
{{ $item->short_description }}
@endif
@if ($item->content)
{!! $item->content !!}
@endif
@if ($item->images->isNotEmpty())
{{ __('Gallery') }}
@foreach ($item->images as $index => $image)
@endforeach
@include('public.partials.lightbox')
@endif
@if ($item->attachment)
{{ __('Download attachment') }}
@endif
@if ($item->external_link)
{{ __('External link') }}
@endif
@if (filled($item->tags))
@foreach ($item->tags as $tag)
- #{{ $tag }}
@endforeach
@endif