osb/app/Models/ServiceAdsl.php

26 lines
508 B
PHP
Raw Normal View History

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-08-11 05:09:41 +00:00
use App\Traits\NextKey;
2018-05-20 12:53:14 +00:00
class ServiceAdsl extends Model
{
2018-08-11 05:09:41 +00:00
use NextKey;
2018-05-20 12:53:14 +00:00
protected $table = 'ab_service__adsl';
2018-08-11 05:09:41 +00:00
public $timestamps = FALSE;
2018-05-20 12:53:14 +00:00
2018-11-21 03:37:17 +00:00
public function getFullNameAttribute()
{
return ($this->service_number AND $this->service_address)
? sprintf('%s: %s',$this->service_number, $this->service_address)
: $this->name;
}
2018-05-20 12:53:14 +00:00
public function getNameAttribute()
{
2018-08-11 05:09:41 +00:00
return $this->service_number ?: $this->service_address;
2018-05-20 12:53:14 +00:00
}
}