Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117883222
UserSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
512 B
Referenced Files
None
Subscribers
None
UserSetting.php
View Options
<?php
namespace
App
;
use
Illuminate\Database\Eloquent\Model
;
/**
* A collection of settings for a User.
*
* @property int $id
* @property int $user_id
* @property string $key
* @property string $value
*/
class
UserSetting
extends
Model
{
protected
$fillable
=
[
'key'
,
'value'
];
/**
* The user to which this setting belongs.
*
* @return \App\User
*/
public
function
user
()
{
return
$this
->
belongsTo
(
'
\A
pp
\U
ser'
,
'id'
,
'user_id'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Apr 6, 12:57 AM (6 d, 6 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18798543
Default Alt Text
UserSetting.php (512 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline