From 6ae11ce0391d7a368e2f50a2b0f3dbbc5d346953 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 7 Oct 2019 17:16:41 +1100 Subject: [PATCH] group settings on client transformer --- app/Transformers/ClientTransformer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Transformers/ClientTransformer.php b/app/Transformers/ClientTransformer.php index af4735fd2f..c1343f1a05 100644 --- a/app/Transformers/ClientTransformer.php +++ b/app/Transformers/ClientTransformer.php @@ -60,6 +60,7 @@ class ClientTransformer extends EntityTransformer 'private_notes' => $client->private_notes ?: '', 'balance' => (float) $client->balance, 'currency_id' => (string)$client->currency_id ?: '', + 'group_settings_id' => (string)$client->group_settings_id ?: '', 'paid_to_date' => (float) $client->paid_to_date, 'last_login' => (int)$client->last_login, 'address1' => $client->address1 ?: '',