From f00134cbfb6945a9a7a519f8325bf7e8200f7c4d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 14 Feb 2022 18:05:31 +1100 Subject: [PATCH] Add client public notes to available variables --- app/Utils/HtmlEngine.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Utils/HtmlEngine.php b/app/Utils/HtmlEngine.php index c96e526d5859..73be66a214a6 100644 --- a/app/Utils/HtmlEngine.php +++ b/app/Utils/HtmlEngine.php @@ -327,6 +327,7 @@ class HtmlEngine $data['$client_address'] = ['value' => $this->client->present()->address() ?: ' ', 'label' => ctrans('texts.address')]; $data['$client.address'] = &$data['$client_address']; $data['$client.postal_code'] = ['value' => $this->client->postal_code ?: ' ', 'label' => ctrans('texts.postal_code')]; + $data['$client.public_notes'] = ['value' => $this->client->public_notes ?: ' ', 'label' => ctrans('texts.notes')]; $data['$client.city'] = ['value' => $this->client->city ?: ' ', 'label' => ctrans('texts.city')]; $data['$client.state'] = ['value' => $this->client->state ?: ' ', 'label' => ctrans('texts.state')]; $data['$client.id_number'] = &$data['$id_number'];