20 lines
298 B
PHP
20 lines
298 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class ServiceAdsl extends Model
|
||
|
{
|
||
|
protected $table = 'ab_service__adsl';
|
||
|
|
||
|
public function service()
|
||
|
{
|
||
|
return $this->belongsTo(Service::class);
|
||
|
}
|
||
|
|
||
|
public function getNameAttribute()
|
||
|
{
|
||
|
return $this->service_number;
|
||
|
}
|
||
|
}
|