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', 'id', 'user_id');
}
}

File Metadata

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)

Event Timeline