You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use Dispatchable, InteractsWithSockets, SerializesModels;
public $message;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Message $message)
{
$this->message = $message;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PresenceChannel('chat');
}
what mistake i am doing
can you please help
Thank you.
The text was updated successfully, but these errors were encountered:
Hello sir,
i am not getting the message at a time
chat message is come on page refresh
is Laravel echo unable to listen MessageSent event ?
Event
use Dispatchable, InteractsWithSockets, SerializesModels;
what mistake i am doing
can you please help
Thank you.
The text was updated successfully, but these errors were encountered: