Page MenuHomePhorge

DomainSetting.php
No OneTemporary

DomainSetting.php

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

File Metadata

Mime Type
text/x-php
Expires
Mon, Aug 25, 3:27 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
222074
Default Alt Text
DomainSetting.php (650 B)

Event Timeline