How to Hide HTML Tags in Laravel Blade

Updated: Oct 05, 2021

hide HTML tags in your Laravel blade page from a string

Something when we save data into the database by using any WYSIWYG editor then it saves HTML tags along with text into a database. And when you retrieve that data into your blade file it also displays HTML tags instead of formatting them according to their tag formats. Below I'll show you different ways to hide those HTML tags.

Solution 1 to Hide HTML Tags from Laravel Output

Usually, we use {{$variable}} to get the output of any variable. But this tag also displays HTML tags. So you have to use the below approach to get rid of HTML tags.

So use below

{!! $variable !!}

Solution 2

if solution 1 do not work for you then use below

{!! nl2br($variables) !!}