osb/app/Models/Service/Host.php

56 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Models\Service;
use Carbon\Carbon;
2020-02-20 11:54:28 +00:00
use App\Interfaces\ServiceItem;
use App\Models\Base\ServiceType;
use App\Models\DomainTld;
use App\Models\HostServer;
use App\Traits\NextKey;
use App\Traits\{ScopeServiceActive,ScopeServiceUserAuthorised};
2020-02-20 11:54:28 +00:00
class Host extends ServiceType implements ServiceItem
{
use ScopeServiceActive,ScopeServiceUserAuthorised;
use NextKey;
const RECORD_ID = 'service__hosting';
2020-02-20 11:54:28 +00:00
protected $dates = [
'host_expire',
];
public $dateFormat = 'U';
protected $table = 'ab_service__hosting';
2020-02-20 11:54:28 +00:00
public function provider()
{
2020-02-20 11:54:28 +00:00
return $this->belongsTo(HostServer::class,'host_server_id');
}
public function tld()
{
return $this->belongsTo(DomainTld::class,'domain_tld_id');
}
public function getServiceDescriptionAttribute(): string
{
// N/A
return 'Hosting';
}
public function getServiceExpireAttribute(): Carbon
{
return $this->host_expire;
}
2020-02-20 11:54:28 +00:00
public function getServiceNameAttribute(): string
{
return sprintf('%s.%s',strtoupper($this->domain_name),strtoupper($this->tld->name));
}
public function inContract(): bool
{
return $this->host_expire->isFuture();
}
}