Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8198193
RoomSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
631 B
Referenced Files
None
Subscribers
None
RoomSetting.php
View Options
<?php
namespace
App\OpenVidu
;
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
{
protected
$fillable
=
[
'room_id'
,
'key'
,
'value'
];
protected
$table
=
'openvidu_room_settings'
;
/**
* The room to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public
function
room
()
{
return
$this
->
belongsTo
(
'
\A
pp
\O
penVidu
\R
oom'
,
'room_id'
,
'id'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jul 8, 6:26 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1051762
Default Alt Text
RoomSetting.php (631 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment