'array', 'invoice' => 'array', ]; //HELPERS public static function get(): ?self { return self::first(); } public function getContactValue(string $key, $default = null) { return $this->contact_info[$key] ?? $default; } public function getInvoiceValue(string $key, $default = null) { return $this->invoice[$key] ?? $default; } }