2019-06-07 06:54:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
use App\Traits\OrderServiceOptions;
|
|
|
|
|
2020-02-05 04:47:24 +00:00
|
|
|
class AccountBilling extends Model
|
2019-06-07 06:54:27 +00:00
|
|
|
{
|
|
|
|
protected $table = 'ab_account_billing';
|
|
|
|
public $timestamps = FALSE;
|
|
|
|
|
|
|
|
public function service()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Service::class);
|
|
|
|
}
|
|
|
|
}
|