remove spaces
This commit is contained in:
@@ -40,8 +40,8 @@ class VolunteerUnassignedFromTask extends Notification implements ShouldBroadcas
|
||||
public function toDatabase($notifiable): array
|
||||
{
|
||||
return [
|
||||
'message' => "Vous avez été désassigné de la tâche {$this->task->name} de l'événement {$this->event->name}.",
|
||||
'task_id' => $this->task->id,
|
||||
'message' => "Vous avez été désassigné de la tâche {$this->task->name} de l'événement {$this->event->name}.",
|
||||
'task_id' => $this->task->id,
|
||||
'event_id' => $this->event->id,
|
||||
];
|
||||
}
|
||||
@@ -54,11 +54,11 @@ class VolunteerUnassignedFromTask extends Notification implements ShouldBroadcas
|
||||
public function toMail($notifiable): void
|
||||
{
|
||||
Mail::to($notifiable->email)->send(new VolunteerUnassignToTaskMail([
|
||||
'name' => $notifiable->name,
|
||||
'lastname' => $notifiable->lastname,
|
||||
'taskName' => $this->task->name,
|
||||
'start' => $this->task->start,
|
||||
'end' => $this->task->end,
|
||||
'name' => $notifiable->name,
|
||||
'lastname' => $notifiable->lastname,
|
||||
'taskName' => $this->task->name,
|
||||
'start' => $this->task->start,
|
||||
'end' => $this->task->end,
|
||||
'eventName' => $this->event->name,
|
||||
]));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user