@foreach ($blogs as $blog)

{{ $blog->title }}

@php $description = $blog->description; $wordCount = str_word_count(strip_tags($description)); @endphp @if ($wordCount > 35)

{{ \Illuminate\Support\Str::words(strip_tags($description), 35, '...') }}

@else

{!! $description !!}

@endif
{{ $blog->created_at->format('F d, Y') }} | {{ $blog->created_at->diffForHumans() }}
@endforeach
{{ $blogs->links() }}