2018-06-19 22:31:49 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-07-16 15:06:43 +10:00
|
|
|
use App\Models\Service_Model as Model;
|
2018-06-19 22:31:49 +10:00
|
|
|
|
|
|
|
class ServiceHost extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'ab_service__hosting';
|
|
|
|
|
|
|
|
public function getNameAttribute()
|
|
|
|
{
|
|
|
|
return sprintf('%s',$this->domain_name);
|
|
|
|
}
|
|
|
|
}
|