{!! $post->content !!}
@foreach ($post->categories as $category)
{{ $category->name }}
@endforeach
{{ $post->title }}
{{ $post->author->name ?? 'مؤلف غير معروف' }}
{{ $post->created_at->format('d F Y') }}
مقالات ذات صلة
@foreach ($relatedPosts as $relatedPost)
{{-- Using the consistent card component from the main blog page --}}
@endforeach
{{ $relatedPost->title }}
{{ Str::limit($relatedPost->content, 90) }}
{{ $relatedPost->author->name ?? 'مؤلف غير معروف' }}
·
{{ $relatedPost->created_at->format('d/m/Y') }}