2018-05-20 12:53:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
use App\Models\Service_Model as Model;
|
2018-05-20 12:53:14 +00:00
|
|
|
|
|
|
|
class ServiceAdsl extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'ab_service__adsl';
|
|
|
|
|
|
|
|
public function getNameAttribute()
|
|
|
|
{
|
|
|
|
return $this->service_number;
|
|
|
|
}
|
|
|
|
}
|