Work on Service rendering

This commit is contained in:
Deon George
2020-02-05 13:47:24 +09:00
parent 01a7d73c17
commit 5f5d114f42
12 changed files with 412 additions and 313 deletions

View 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);
}
}