我想通过Laravel发送通知,一切正常,但我有一些风格问题,
如何将
<br>
标记添加到此php
行?
public function toTelegram($product)
{
return TelegramMessage::create()
->to('@xxxxx')
->content('New Product is here ' .$product->title) //need br here
->button('Shop Now', 'http://domain.co/store/'. $product->slug);
}
当用户收到通知时,我希望$product->title
显示在新行中。
PS:我尝试\n
,\r\n
甚至<br>
,但没有任何改变。
这就是现在的样子:
答案 0 :(得分:0)
替换下面的行
"library-name": "git+https://bitbucket.org/user/library-name.git"
通过
content('New Product is here ' .$product->title)
答案 1 :(得分:0)
我认为你应该改变这一行,->content('New Product is here ' .$product->title) //need br here
为此,->content('New Product is here '.'<br>'.$product->title)
尝试替换&lt; BR&GT;与\ n ...
答案 2 :(得分:0)
->content('New Product is here '.PHP_EOL.$product->title);
我认为PHP_EOL应该可行。毕竟是php。
同样做一些研究我认为这个也应该有效:
->content("New Product is here \n".$product->title); //double quotes