File: /home/imensosw/www/mpl.imenso.co/app/Events/FanMarksArtistAsSeenLive.php
<?php
namespace App\Events;
use App\Models\User as User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class FanMarksArtistAsSeenLive
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $fan;
public $artist;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(User $fan, User $artist)
{
$this->fan = $fan;
$this->artist = $artist;
}
/*
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
}