File: /home/xedaptot/work.naniguide.com/app/Listeners/EmployeeShiftScheduleListener.php
<?php
namespace App\Listeners;
use App\Events\EmployeeShiftScheduleEvent;
use App\Notifications\ShiftScheduled;
use Illuminate\Support\Facades\Notification;
class EmployeeShiftScheduleListener
{
/**
* Handle the event.
*
* @param EmployeeShiftScheduleEvent $event
* @return void
*/
public function handle(EmployeeShiftScheduleEvent $event)
{
Notification::send($event->employeeShiftSchedule->user, new ShiftScheduled($event->employeeShiftSchedule));
}
}