Page MenuHomePhorge

UserSetting.php
No OneTemporary

Authored By
Unknown
Size
450 B
Referenced Files
None
Subscribers
None

UserSetting.php

<?php
namespace App;
use App\Traits\BelongsToUserTrait;
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
{
use BelongsToUserTrait;
/** @var array<int, string> The attributes that are mass assignable */
protected $fillable = ['user_id', 'key', 'value'];
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Apr 6, 1:26 AM (1 d, 16 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
86/29/9d868e9e84d4048b03fd24ebe287
Default Alt Text
UserSetting.php (450 B)

Event Timeline