19 lines
302 B
PHP
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);
|
|
}
|
|
} |