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