mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
26 lines
517 B
PHP
26 lines
517 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DomainSslCertificate extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'domain',
|
|
'certificate',
|
|
'private_key',
|
|
'certificate_chain',
|
|
'customer_id',
|
|
'is_active',
|
|
'is_wildcard',
|
|
'is_auto_renew',
|
|
'expiration_date',
|
|
'renewal_date',
|
|
'renewed_date',
|
|
'renewed_until_date',
|
|
];
|
|
}
|