{{-- resources/views/articles/show.blade.php --}} @extends('layouts.app') @section('content') @include('partials.navbar') @include('articles.partials.home-css') @include('partials.news_ticker')

{{ $article->category ? $article->category->name : ' ' }}

{{ $article->title }}


{!! Str::words(strip_tags($article->description), 50, '...') !!}

@if ($article->user && $article->user->avatar) {{ $article->user->name }} @endif {{-- writer_photo}") }}" alt="Writer Photo" style="max-width: 100px; height: auto;" class="writer-photo mt-3"> --}} By {{ $article->user->name ?? 'Admin' }}  | Estimated Reading Time: {{ $readingTime }} min | Total Words: {{ $wordCount }} | Published: {{ $article->created_at->format(' j F Y') }} | {{ number_format($article->views) }} views @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 Article Image @endif
{{ $article->credit ? 'Image Credit: ' . $article->credit : '' }}

{!! $article->content !!}

{{ $article->user->name }}

{{ $article->user->bio }}

View More Articles by {{ $article->user->name }}

This is an opinion piece. The views expressed in this article are those of just the author.



@endsection