{{ $listallblog->created_at->format('Y-m-d') }}
{{ $listallblog->title }}
@php
$description = $listallblog->description;
$words = str_word_count($description, 0);
$limit = 20; // Adjust the limit as needed
if ($words > $limit) {
$limitedDescription = implode(' ', array_slice(str_word_count($description, 2), 0, $limit)) . '...';
} else {
$limitedDescription = $description;
}
// Remove starting paragraph tag if present
$limitedDescription = ltrim($limitedDescription, '
'); @endphp
{!! $limitedDescription !!}