I want to send notifications by Laravel, everything works fine but I have sort of style issue,
How can I add
<br>tag to this line ofphp?
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);
}
I want $product->title shows in a new line when the user receives the notification.
PS: I tried \n , \r\n even <br> but nothing changed.
this is how it looks like now:
