Work on Service rendering
This commit is contained in:
18
app/Models/AccountBilling.php
Normal file
18
app/Models/AccountBilling.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
use App\Traits\OrderServiceOptions;
|
||||
|
||||
class AccountBilling extends Model
|
||||
{
|
||||
protected $table = 'ab_account_billing';
|
||||
public $timestamps = FALSE;
|
||||
|
||||
public function service()
|
||||
{
|
||||
return $this->belongsTo(Service::class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user