@if($new->attachments->isNotEmpty())
@php
$attachment = $new->attachments->first();
$sizes = json_decode($attachment->sizes);
$largeImage = optional($sizes)->large ?? $attachment->path;
@endphp
@endif
{!! $new->description !!}
@if($new->attachments->count() > 1)
تصاویر خبر
@foreach($new->attachments->skip(1) as $attachment)
@php
$sizes = json_decode($attachment->sizes);
$mediumImage = optional($sizes)->medium ?? $attachment->path;
@endphp
@endforeach
@endif
@if($new->tags)
برچسبها:
@php
$tags = json_decode($new->tags, true) ?? [];
@endphp
@foreach($tags as $tag)
- {{ $tag }}
@endforeach
@endif