@php $content = strip_tags($guide->content); $content = str_replace(' ', ' ', $content); $shortDesc = substr($content, 0, 140); if (strlen($content) > 140) { $shortDesc .= '...'; } @endphp
{!! $guide->content !!}