2018-06-19 22:31:49 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-07-16 15:06:43 +10:00
|
|
|
use App\Models\Service_Model as Model;
|
2018-08-11 15:09:41 +10:00
|
|
|
use App\Traits\NextKey;
|
2018-06-19 22:31:49 +10:00
|
|
|
|
|
|
|
class ServiceVoip extends Model
|
|
|
|
{
|
2018-08-11 15:09:41 +10:00
|
|
|
use NextKey;
|
2018-06-19 22:31:49 +10:00
|
|
|
protected $table = 'ab_service__voip';
|
2018-08-11 15:09:41 +10:00
|
|
|
public $timestamps = FALSE;
|
2018-06-19 22:31:49 +10:00
|
|
|
|
|
|
|
public function getNameAttribute()
|
|
|
|
{
|
|
|
|
return $this->service_number;
|
|
|
|
}
|
|
|
|
}
|