mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Update contact information in InstantPayment class
This commit is contained in:
parent
ea6be8d698
commit
539451319f
@ -45,6 +45,15 @@ class InstantPayment
|
|||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
nlog($this->request->all());
|
nlog($this->request->all());
|
||||||
|
|
||||||
|
$cc = auth()->guard('contact')->user();
|
||||||
|
|
||||||
|
$cc->first_name = $this->request->contact_first_name;
|
||||||
|
$cc->last_name = $this->request->contact_last_name;
|
||||||
|
$cc->email = $this->request->contact_email;
|
||||||
|
|
||||||
|
$cc->save();
|
||||||
|
|
||||||
$is_credit_payment = false;
|
$is_credit_payment = false;
|
||||||
|
|
||||||
$tokens = [];
|
$tokens = [];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user