mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for null props
This commit is contained in:
parent
0c54b20987
commit
67a73d6cea
@ -132,7 +132,7 @@ class TaxProvider
|
||||
'city' => $this->client->shipping_city,
|
||||
'state' => $this->client->shipping_state,
|
||||
'postal_code' => $this->client->shipping_postal_code,
|
||||
'country' => $this->client->shipping_country->name,
|
||||
'country' => $this->client?->shipping_country?->name,
|
||||
];
|
||||
|
||||
$taxable_address = $this->taxShippingAddress() ? $shipping_details : $billing_details;
|
||||
|
Loading…
x
Reference in New Issue
Block a user