18 lines
287 B
PHP
18 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Service_Model as Model;
|
|
use App\Traits\NextKey;
|
|
|
|
class ServiceVoip extends Model
|
|
{
|
|
use NextKey;
|
|
protected $table = 'ab_service__voip';
|
|
public $timestamps = FALSE;
|
|
|
|
public function getNameAttribute()
|
|
{
|
|
return $this->service_number;
|
|
}
|
|
} |