Page MenuHomePhorge

UserSetting.php
No OneTemporary

Authored By
Unknown
Size
563 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 = [
'user_id', 'key', 'value'
];
/**
* The user to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function user()
{
return $this->belongsTo('\App\User', 'user_id', 'id');
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Apr 6, 12:07 AM (1 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a5/e1/d1d7f02f9914d2d1aaf0eb196b28
Default Alt Text
UserSetting.php (563 B)

Event Timeline