Page MenuHomePhorge

UserSetting.php
No OneTemporary

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, Aug 25, 3:19 PM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
217797
Default Alt Text
UserSetting.php (450 B)

Event Timeline