15 lines
234 B
PHP
15 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Service_Model as Model;
|
|
|
|
class ServiceHost extends Model
|
|
{
|
|
protected $table = 'ab_service__hosting';
|
|
|
|
public function getNameAttribute()
|
|
{
|
|
return sprintf('%s',$this->domain_name);
|
|
}
|
|
} |