Page MenuHomePhorge

RoomSetting.php
No OneTemporary

Authored By
Unknown
Size
705 B
Referenced Files
None
Subscribers
None

RoomSetting.php

<?php
namespace App\Meet;
use Illuminate\Database\Eloquent\Model;
/**
* A collection of settings for a Room.
*
* @property int $id
* @property int $room_id
* @property string $key
* @property string $value
*/
class RoomSetting extends Model
{
/** @var array<int, string> The attributes that are mass assignable */
protected $fillable = ['room_id', 'key', 'value'];
/** @var string Database table name */
protected $table = 'openvidu_room_settings';
/**
* The room to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function room()
{
return $this->belongsTo(Room::class);
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:25 PM (2 d, 18 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a4/30/3da11903abf84a827df843faba55
Default Alt Text
RoomSetting.php (705 B)

Event Timeline