We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c693e commit 7b36899Copy full SHA for 7b36899
app/Notifications/ArticleSubmitted.php
@@ -42,8 +42,8 @@ public function toTelegram($notifiable)
42
private function content(): string
43
{
44
$content = "*Nouvel Article Soumis!*\n\n";
45
- $content .= 'Titre: '.$this->article->title."\n";
46
- $content .= 'Par: [@'.$this->article->author->username.']('.route('profile', $this->article->author->username).')';
+ $content .= 'Titre: ' . $this->article->title . "\n";
+ $content .= 'Par: [@' . $this->article->author->username . '](' . route('profile', $this->article->author->username) . ')';
47
48
return $content;
49
}
0 commit comments