File: /home/imensosw/www/mpl.imenso.co/app/Events/EventCommentedOn.php
<?php
namespace App\Events;
use App\Models\Comment as Comment;
use App\Models\Event as Event;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class EventCommentedOn
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $event;
public $comment;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Event $event, Comment $comment)
{
$this->event = $event;
$this->comment = $comment;
}
}