add information in task date updated notification

This commit is contained in:
2026-03-19 17:49:41 +01:00
parent cf2a29a863
commit d627afdeaf
2 changed files with 11 additions and 2 deletions
+7 -1
View File
@@ -15,15 +15,21 @@ class TaskDateUpdated implements ShouldBroadcastNow
use Dispatchable, InteractsWithSockets, SerializesModels;
public $task;
public $event;
public $start;
public $end;
protected $userId;
/**
* Create a new event instance.
*/
public function __construct($userId, Task $task)
public function __construct($userId, Task $task, Event $event, $start, $end)
{
$this->userId = $userId;
$this->task = $task;
$this->event = $event;
$this->start = $start;
$this->end = $end;
}
/**