@if ($article->article_image)
@php
$path = $article->article_image;
if (str_starts_with($path, 'uploads/')) {
$imageUrl = asset($path); // old images
} else {
$imageUrl = asset('storage/' . $path); // new images
}
@endphp
@endif
By {{ $user->name }} | 📅 {{ $article->created_at->format('d F Y') }}
⏱ {{ $article->reading_time }} min read | 📝 {{ $article->word_count }} words