%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Listeners/ |
Upload File : |
<?php
namespace App\Listeners;
use App\Events\TaskEvent;
use App\Models\User;
use App\Notifications\NewTask;
use App\Notifications\TaskUpdated;
use App\Notifications\NewClientTask;
use App\Notifications\TaskCompleted;
use App\Notifications\TaskUpdatedClient;
use App\Notifications\TaskCompletedClient;
use App\Notifications\TaskMention;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Notification;
class TaskListener
{
/**
* Handle the event.
*
* @param TaskEvent $event
* @return void
*/
public function handle(TaskEvent $event)
{
if (!$event->task->is_private) {
if ($event->notificationName == 'NewClientTask') {
Notification::send($event->notifyUser, new NewClientTask($event->task));
}
elseif ($event->notificationName == 'NewTask') {
Notification::send($event->notifyUser, new NewTask($event->task));
}
elseif ($event->notificationName == 'TaskUpdated') {
Notification::send($event->notifyUser, new TaskUpdated($event->task));
}
elseif ($event->notificationName == 'TaskCompleted') {
Notification::send($event->notifyUser, new TaskCompleted($event->task, user()));
}
elseif ($event->notificationName == 'TaskCompletedClient') {
Notification::send($event->notifyUser, new TaskCompletedClient($event->task));
}
elseif ($event->notificationName == 'TaskUpdatedClient') {
Notification::send($event->notifyUser, new TaskUpdatedClient($event->task));
}
elseif ($event->notificationName == 'TaskMention') {
Notification::send($event->notifyUser, new TaskMention($event->task));
}
}
}
}