Page MenuHomePhorge

UserSetting.php
No OneTemporary

Authored By
Unknown
Size
512 B
Referenced Files
None
Subscribers
None

UserSetting.php

<?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('\App\User', 'user_id', 'id');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:27 AM (1 d, 14 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e0/1c/8185c090eed62d9311c2e9ae67f9
Default Alt Text
UserSetting.php (512 B)

Event Timeline