Merge pull request #6956 from joshuadwire/v5-develop
Fix eWay first/last name reversed in saved cards
This commit is contained in:
commit
bd0aefc095
1 changed files with 2 additions and 2 deletions
|
|
@ -63,8 +63,8 @@ class CreditCard
|
|||
$transaction = [
|
||||
'Reference' => $this->eway_driver->client->number,
|
||||
'Title' => '',
|
||||
'FirstName' => $this->eway_driver->client->contacts()->first()->present()->last_name(),
|
||||
'LastName' => $this->eway_driver->client->contacts()->first()->present()->first_name(),
|
||||
'FirstName' => $this->eway_driver->client->contacts()->first()->present()->first_name(),
|
||||
'LastName' => $this->eway_driver->client->contacts()->first()->present()->last_name(),
|
||||
'CompanyName' => $this->eway_driver->client->name,
|
||||
'Street1' => $this->eway_driver->client->address1,
|
||||
'Street2' => $this->eway_driver->client->address2,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue