osb/app/Models/ServiceDomain.php

24 lines
414 B
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
2018-07-16 05:06:43 +00:00
use App\Models\Service_Model as Model;
2018-08-11 05:09:41 +00:00
use App\Traits\NextKey;
2018-05-20 12:53:14 +00:00
class ServiceDomain extends Model
{
2018-08-11 05:09:41 +00:00
use NextKey;
2018-05-20 12:53:14 +00:00
protected $table = 'ab_service__domain';
2018-08-11 05:09:41 +00:00
public $timestamps = FALSE;
2018-05-20 12:53:14 +00:00
public function tld()
{
return $this->belongsTo(DomainTld::class,'domain_tld_id');
}
public function getNameAttribute()
{
return sprintf('%s.%s',$this->domain_name,$this->tld->name);
}
}