Page MenuHomePhorge

GroupSetting.php
No OneTemporary

Authored By
Unknown
Size
576 B
Referenced Files
None
Subscribers
None

GroupSetting.php

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* A collection of settings for a Group.
*
* @property int $id
* @property int $group_id
* @property string $key
* @property string $value
*/
class GroupSetting extends Model
{
protected $fillable = [
'group_id', 'key', 'value'
];
/**
* The group to which this setting belongs.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function group()
{
return $this->belongsTo(\App\Group::class, 'group_id', 'id');
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 3:02 AM (4 d, 8 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3c/4d/68f69809f618d78f28300636f885
Default Alt Text
GroupSetting.php (576 B)

Event Timeline