osb/app/Models/ServiceHost.php
2018-08-11 15:21:15 +10:00

19 lines
302 B
PHP

<?php
namespace App\Models;
use App\Models\Service_Model as Model;
use App\Traits\NextKey;
class ServiceHost extends Model
{
use NextKey;
protected $table = 'ab_service__hosting';
public $timestamps = FALSE;
public function getNameAttribute()
{
return sprintf('%s',$this->domain_name);
}
}