radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
465 B
28 lines
465 B
7 years ago
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class SettingGroup extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The database table used by the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'setting_groups';
|
||
|
|
||
|
/**
|
||
|
* Tell the Model this Table doesn't support timestamps.
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
public $timestamps = false;
|
||
|
|
||
|
public function settings()
|
||
|
{
|
||
|
return $this->hasMany('App\Setting', 'group_id');
|
||
|
}
|
||
|
}
|