mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
50 lines
775 B
PHP
50 lines
775 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use App\Classes\Options;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Group extends Model
|
|
{
|
|
|
|
/**
|
|
* model's array form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['name'];
|
|
|
|
|
|
/**
|
|
* The accessors to append to the model's array form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $appends = ['isActive'];
|
|
|
|
|
|
/**
|
|
* Get the TwoFAccounts of the group.
|
|
*/
|
|
public function twofaccounts()
|
|
{
|
|
return $this->hasMany('App\TwoFAccount');
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Get the group
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getIsActiveAttribute()
|
|
{
|
|
$activeGroupId = intval(Options::get('activeGroup'));
|
|
|
|
return $this->id === $activeGroupId ? true : false;
|
|
}
|
|
|
|
}
|