I want remove HTML tags (all) from a string on laravel blade ...
code
{!! \\Illuminate\\Support\\Str::words($subject->body, 5,\'...\') !!}
As for me, I use this construction:
{!! str_limit(strip_tags($post->text), $limit = 50, $end = '...') !!}
I hope, my code was helpful for somebody)