@props(['post'])
{{-- 🖼️ صورة المقال --}} @if($post->cover) {{ $post->title }}
@else
@endif
{{-- 📰 النص --}}
{{-- القسم --}} @if(optional($post->category)?->name) {{ $post->category->name }} @endif {{-- العنوان --}}

{{ $post->title }}

{{-- المقتطف --}}

{{ Str::limit($post->excerpt ?: strip_tags($post->body), 160) }}

{{-- المعلومات السفلية --}}
{{ optional($post->published_at)?->translatedFormat('d F Y') }}
@if(optional($post->author)?->name) @endif