Granular notification strings. Closes #2303

This commit is contained in:
James Brooks
2017-01-09 18:41:51 +00:00
parent a81c87bed7
commit c1831d8559
8 changed files with 115 additions and 74 deletions

View File

@@ -46,8 +46,8 @@ class SystemTestNotification extends Notification
public function toMail($notifiable)
{
return (new MailMessage())
->subject(trans('notifications.system.test.subject'))
->greeting(trans('notifications.system.test.title'))
->line(trans('notifications.system.test.content'));
->subject(trans('notifications.system.test.mail.subject'))
->greeting(trans('notifications.system.test.mail.title'))
->line(trans('notifications.system.test.mail.content'));
}
}