Files
construprogress/app/Notifications/TaskAssignedNotification.php
T
Javier Braña 9222eefdf9 feat: Phase 2 - Laravel Reverb + real-time notifications
- Install laravel/reverb + laravel-echo + pusher-js
- Configure broadcasting to reverb in .env.example + .env
- Add Echo + Pusher client in resources/js/app.js
- Update all 14 notifications to implement ShouldBroadcast + broadcastOn()
- Update NotificationBell component to listen for real-time events
- Add Livewire.emit in notification-bell blade for JS-to-Livewire bridge

Tests: 101 passing (319 assertions)
2026-08-31 12:16:56 +02:00

36 lines
942 B
PHP

<?php
namespace App\Notifications;
use App\Models\Task;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Notifications\Notification;
class TaskAssignedNotification extends Notification implements ShouldBroadcast
{
use Queueable;
public function __construct(public Task $task) {}
public function via($notifiable): array
{
return ['database', 'broadcast'];
}
public function toArray($notifiable): array
{
return [
'type' => 'task_assigned',
'task_id' => $this->task->id,
'project_id' => $this->task->project_id,
'priority' => $this->task->priority,
'message' => "Se te ha asignado la tarea '{$this->task->title}'",
];
}
public function broadcastOn(): array
{
return [new \Illuminate\Broadcasting\PrivateChannel('user.'.$this->task->assigned_to)];
}
}