diff --git a/app/Transformers/ClientTransformer.php b/app/Transformers/ClientTransformer.php index a4f2b8a26eab..7624d33bad9b 100644 --- a/app/Transformers/ClientTransformer.php +++ b/app/Transformers/ClientTransformer.php @@ -47,6 +47,32 @@ class ClientTransformer extends EntityTransformer return [ 'id' => (int) $client->id, 'name' => $client->name ?: '', + 'website' => $client->website ?: '', + 'private_notes' => $client->private_notes ?: '', + 'balance' => $client->balance ?: '', + 'paid_to_date' => $client->paid_to_date ?: '', + 'last_login' => $client->last_login ?: '', + 'address1' => $client->address1 ?: '', + 'address2' => $client->address2 ?: '', + 'city' => $client->city ?: '', + 'state' => $client->state ?: '', + 'postal_code' => $client->postal_code ?: '', + 'country_id' => $client->country_id ?: '', + 'custom_value1' => $client->custom_value1 ?: '', + 'custom_value2' => $client->custom_value2 ?: '', + 'custom_value3' => $client->custom_value3 ?: '', + 'custom_value4' => $client->custom_value4 ?: '', + 'shipping_address1' => $client->shipping_address1 ?: '', + 'shipping_address2' => $client->shipping_address2 ?: '', + 'shipping_city' => $client->shipping_city ?: '', + 'shipping_state' => $client->shipping_state ?: '', + 'shipping_postal_code' => $client->shipping_postal_code ?: '', + 'shipping_country_id' => $client->shipping_country_id ?: '', + 'settings' => $client->settings ?: '', + 'is_deleted' => (bool) $client->is_deleted ?: '', + 'payment_terms' => $client->payment_terms ?: '', + 'vat_number' => $client->vat_number ?: '', + 'id_number' => $client->id_number ?: '', ]; } -} +} \ No newline at end of file