remove spaces

This commit is contained in:
2026-03-28 15:47:25 +01:00
parent 4a0087104c
commit a99a610688
7 changed files with 40 additions and 40 deletions
+4 -4
View File
@@ -155,12 +155,12 @@ class TasksController extends Controller
$event = Event::findOrFail($task->events_id);
Notification::send($task->users, new TaskDateUpdated(
task: $task,
event: $event,
task: $task,
event: $event,
oldStart: FormatDate::formatDate($task->start),
oldEnd: FormatDate::formatDate($task->end),
oldEnd: FormatDate::formatDate($task->end),
newStart: FormatDate::formatDate($request['start']),
newEnd: FormatDate::formatDate($request['end']),
newEnd: FormatDate::formatDate($request['end']),
));
}