@foreach ($blogs as $blog) @php /* * لا يتم اختراع أي بيانات: * - التاج يظهر فقط إذا كان موجوداً فعلاً داخل المقال. * - الوصف يؤخذ من description أو content إن وُجد. */ $blogTag = data_get($blog, 'tag') ?? data_get($blog, 'category.name') ?? null; $blogDescription = data_get($blog, 'description') ?? data_get($blog, 'short_description') ?? data_get($blog, 'content') ?? null; @endphp
{{ $blog->title }} @if(!empty($blogTag)) {{ $blogTag }} @endif
{{ \Carbon\Carbon::parse($blog->updated_at)->translatedFormat('d M Y') }} {{ $blog->comments()->count() }}

{{ $blog->title }}

@if(!empty($blogDescription))

{{ \Illuminate\Support\Str::limit(strip_tags($blogDescription), 150) }}

@endif
@endforeach @once @endonce