PHP Classes

File: chatapp/routes/channels.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Chat App Laravel   chatapp/routes/channels.php   Download  
File: chatapp/routes/channels.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Chat App Laravel
Chat systen that support multiple rooms
Author: By
Last change:
Date: 9 months ago
Size: 284 bytes
 

Contents

Class file image Download
<?php

use App\Models\User;
use
Illuminate\Support\Facades\Broadcast;

Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
    return (int)
$user->id === (int) $id;
});

Broadcast::channel('chat.room.{roomId}', function (User $user) {
    return
$user->only('id');
});