| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxVps\Core\Models\Whmcs;
- use \Illuminate\Database\Eloquent\Model as EloquentModel;
- /**
- * Description of Registrars
- *
- * @var id
- * @var registrar
- * @var setting
- * @var value
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- class Registrars extends EloquentModel
- {
- /**
- * Table name
- *
- * @var string
- */
- protected $table = 'tblregistrars';
- protected $primaryKey = 'id';
-
- /**
- * Eloquent guarded parameters
- * @var array
- */
- protected $guarded = ['id'];
- /**
- * Eloquent fillable parameters
- * @var array
- */
- protected $fillable = ['registrar', 'setting', 'value'];
- /**
- * Indicates if the model should soft delete.
- *
- * @var bool
- */
- protected $softDelete = false;
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
- public function __construct(array $attributes = [])
- {
- parent::__construct($attributes);
- }
-
- /*
- * Returns list of active whmcs registrar modules
- */
- public function getActiveList()
- {
- return $this->query()->getQuery()->select(['registrar'])->groupBy('registrar')->lists('registrar');
- }
- }
|