Add salutation field to contacts #13

This commit is contained in:
2025-10-29 13:53:08 +01:00
parent 3ec15d95b0
commit b55f20727d
10 changed files with 26 additions and 13 deletions
@@ -344,6 +344,7 @@ public function store(Request $request)
'billingData.billingAddress.city' => 'nullable|string',
'billingData.billingAddress.postalCode' => 'nullable|string',
'billingData.billingAddress.countryCode' => 'nullable|string',
'billingData.contactSalutation' => 'nullable|string',
'billingData.contactFirstName' => 'nullable|string',
'billingData.contactLastName' => 'nullable|string',
'billingData.paymentTerms' => 'nullable|array',
@@ -428,6 +429,7 @@ public function update(Request $request, $id)
'billingData.billingAddress.city' => 'nullable|string',
'billingData.billingAddress.postalCode' => 'nullable|string',
'billingData.billingAddress.countryCode' => 'nullable|string',
'billingData.contactSalutation' => 'nullable|string',
'billingData.contactFirstName' => 'nullable|string',
'billingData.contactLastName' => 'nullable|string',
'billingData.paymentTerms' => 'nullable|array',