getDefaults($contact), [ 'id' => (int) $contact->public_id, 'first_name' => $contact->first_name ?: '', 'last_name' => $contact->last_name ?: '', 'email' => $contact->email ?: '', 'contact_key' => $contact->contact_key ?: '', 'updated_at' => $this->getTimestamp($contact->updated_at), 'archived_at' => $this->getTimestamp($contact->deleted_at), 'is_primary' => (bool) $contact->is_primary, 'phone' => $contact->phone ?: '', 'last_login' => $contact->last_login ?: '', 'send_invoice' => (bool) $contact->send_invoice, 'custom_value1' => $contact->custom_value1 ?: '', 'custom_value2' => $contact->custom_value2 ?: '', ]); } }