Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117878347
SharedFolderSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
679 B
Referenced Files
None
Subscribers
None
SharedFolderSetting.php
View Options
<?php
namespace
App
;
use
Illuminate\Database\Eloquent\Model
;
/**
* A collection of settings for a SharedFolder.
*
* @property int $id
* @property int $shared_folder_id
* @property string $key
* @property string $value
*/
class
SharedFolderSetting
extends
Model
{
/** @var array<int, string> The attributes that are mass assignable */
protected
$fillable
=
[
'shared_folder_id'
,
'key'
,
'value'
];
/**
* The folder to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public
function
folder
()
{
return
$this
->
belongsTo
(
SharedFolder
::
class
,
'shared_folder_id'
,
'id'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Apr 5, 10:07 PM (3 w, 21 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c3/89/611eabfc76960d27d13c5cd32100
Default Alt Text
SharedFolderSetting.php (679 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline