Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2533397
SharedFolderSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
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
Thu, Feb 5, 1:47 PM (1 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
427930
Default Alt Text
SharedFolderSetting.php (679 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment