Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117757039
RoomSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
726 B
Referenced Files
None
Subscribers
None
RoomSetting.php
View Options
<?php
namespace
App\Meet
;
use
Illuminate\Database\Eloquent\Model
;
use
Illuminate\Database\Eloquent\Relations\BelongsTo
;
/**
* 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 list<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 BelongsTo<Room, $this>
*/
public
function
room
()
{
return
$this
->
belongsTo
(
Room
::
class
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 9:00 AM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18737442
Default Alt Text
RoomSetting.php (726 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline