File: /home/imensosw/www/mpl.imenso.co/app/Listeners/RemoveUserCommentedOnYourPostNotification.php
<?php
namespace App\Listeners;
use App\Events\UserDeletedCommentOnPost;
class RemoveUserCommentedOnYourPostNotification
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param UserDeletedCommentOnPost $event
* @return void
*/
public function handle(UserDeletedCommentOnPost $event)
{
$event->comment->post->user->removeNotification(
3, [
'comment_id' => $event->comment->id,
]
);
}
}