I have the same code notification in Laravel 5.5 and 5.7, for Laravel 5.5, I am able to use <strong>
in ->line, but in 5.7 it will escape it.
In my notification blade view file, I set {{ ]} or {!! !!}, I still can't display html in my email. In 5.5, I do not need to escape it still work.
\\this is when I not escape
<strong>2019-01-13 15:41</strong>
\\this is when I escape
<strong>2019-01-13 15:37</strong>
what I want is display bold like below.
2019-01-13 15:37
both method also displayed the tag, It will not bold the text. The same coding work in 5.5 but not Laravel version 5.7.20