我正在尝试在Laravel异常中绘制漂亮的列表。我拥有的代码:
if (count($notValidatedProducts) !== 0) {
throw new Exception('Could not create invoice. \n<br> test');
}
我尝试了\n
和<br>
,但在视图中无法使用。我什至找不到任何文档。
答案 0 :(得分:2)
好吧,如果您要询问如何进行新行输入\n or <br>
您可以尝试以下方法:
if (count($notValidatedProducts) !== 0) {
throw new Exception('Could not create invoice.'."\r\n".'test');
}
祝你好运