osb/app/Models/Service/Domain.php

26 lines
462 B
PHP
Raw Normal View History

<?php
namespace App\Models\Service;
2020-02-19 23:37:45 +11:00
use App\Models\Base\ServiceType;
2022-04-19 17:07:39 +10:00
use App\Traits\ServiceDomains;
use App\Models\DomainRegistrar;
/**
* Class Domain (Service)
2022-04-19 17:07:39 +10:00
* Services that are managed Domain Names
*/
2022-04-19 17:07:39 +10:00
class Domain extends ServiceType
{
2022-04-19 17:07:39 +10:00
use ServiceDomains;
2022-04-19 17:07:39 +10:00
protected $table = 'service_domain';
2020-02-10 22:07:46 +11:00
protected $with = ['tld'];
/* RELATIONS */
2020-02-19 23:37:45 +11:00
public function registrar()
{
return $this->belongsTo(DomainRegistrar::class,'domain_registrar_id');
}
}