Query optimisations using with()

This commit is contained in:
Deon George
2020-02-10 22:07:46 +11:00
parent cd18b98859
commit f41fc3eb9c
8 changed files with 101 additions and 33 deletions

View File

@@ -7,10 +7,10 @@ use App\Traits\NextKey;
class Domain extends \App\Models\Base\ServiceType
{
use NextKey;
const RECORD_ID = 'service__domain';
protected $table = 'ab_service__domain';
protected $with = ['tld'];
public function tld()
{

View File

@@ -7,7 +7,6 @@ use App\Traits\NextKey;
class Host extends \App\Models\Base\ServiceType
{
use NextKey;
const RECORD_ID = 'service__hosting';
protected $table = 'ab_service__hosting';

View File

@@ -7,7 +7,6 @@ use App\Traits\NextKey;
class SSL extends \App\Models\Base\ServiceType
{
use NextKey;
const RECORD_ID = 'service__ssl';
protected $table = 'ab_service__ssl';