@if(isset($query))
نتایج جستجو برای: "{{ $query }}"
@endif
@forelse($articles as $article)
@if($article->attachments->isNotEmpty())
@php
$attachment = $article->attachments->first();
$sizes = json_decode($attachment->sizes);
$mediumImage = optional($sizes)->medium ?? $attachment->path;
@endphp
@endif
{{ Str::limit(strip_tags($article->short_description), 200) }}
@if($article->tags)
@php
$tags = json_decode($article->tags, true) ?? [];
@endphp
@foreach(array_slice($tags, 0, 2) as $tag)
-
{{ $tag }}
@endforeach
@endif
@empty
@if(isset($query))
هیچ مقالهای با این عبارت یافت نشد.
@else
هنوز مقالهای منتشر نشده است.
@endif
@endforelse