php - Is there any way to use <br> in laravel blade?
Solution:
In your blade template, you probably need to use a different syntax so blade will render unescaped strings.
You can read more about it here: https://laravel.com/docs/8.x/blade#displaying-unescaped-data
{!! $footer->address !!}
Answer
Solution:
if you use this:
{!! $footer->address !!}
'SHARJAH, <br> UAE'
will be render.
Source