mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes #1211
This commit is contained in:
parent
6c30a603f6
commit
312e8e8e48
@ -99,6 +99,11 @@ class ClientPortalController extends BaseController
|
||||
'phone',
|
||||
]);
|
||||
|
||||
// translate the client country name
|
||||
if ($invoice->client->country) {
|
||||
$invoice->client->country->name = trans('texts.country_' . $invoice->client->country->name);
|
||||
}
|
||||
|
||||
$data = [];
|
||||
$paymentTypes = $this->getPaymentTypes($account, $client, $invitation);
|
||||
$paymentURL = '';
|
||||
|
Loading…
x
Reference in New Issue
Block a user