styling notifications
This commit is contained in:
@ -6,6 +6,7 @@ use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Notifications\Notification;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Support\HtmlString;
|
||||
|
||||
class ExportFailed extends Notification implements ShouldQueue
|
||||
{
|
||||
@ -51,8 +52,11 @@ class ExportFailed extends Notification implements ShouldQueue
|
||||
{
|
||||
return (new MailMessage)
|
||||
->subject(trans('notifications.export.failed.title'))
|
||||
->line(new HtmlString('<br><br>'))
|
||||
->line(trans('notifications.export.failed.description'))
|
||||
->line($this->message);
|
||||
->line(new HtmlString('<br><br>'))
|
||||
->line($this->message)
|
||||
->line(new HtmlString('<br><br>'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user