osb/app/Models/ServiceHost.php

19 lines
302 B
PHP
Raw Normal View History

<?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;
class ServiceHost extends Model
{
2018-08-11 05:09:41 +00:00
use NextKey;
protected $table = 'ab_service__hosting';
2018-08-11 05:09:41 +00:00
public $timestamps = FALSE;
public function getNameAttribute()
{
return sprintf('%s',$this->domain_name);
}
}