从Exception Laravel渲染HTML标签

时间:2019-04-09 09:22:49

标签: laravel

我正在尝试在Laravel异常中绘制漂亮的列表。我拥有的代码:

if (count($notValidatedProducts) !== 0) {
    throw new Exception('Could not create invoice. \n<br> test');
}

我尝试了\n<br>,但在视图中无法使用。我什至找不到任何文档。

1 个答案:

答案 0 :(得分:2)

好吧,如果您要询问如何进行新行输入\n or <br>

您可以尝试以下方法:

if (count($notValidatedProducts) !== 0) {
throw new Exception('Could not create invoice.'."\r\n".'test');

}

祝你好运