diff --git a/app/Http/Controllers/iLinkTransactionController.php b/app/Http/Controllers/iLinkTransactionController.php index 22cec14..d3e2fd9 100755 --- a/app/Http/Controllers/iLinkTransactionController.php +++ b/app/Http/Controllers/iLinkTransactionController.php @@ -962,8 +962,8 @@ class iLinkTransactionController extends Controller 'currency' => $this->getCurrency($init_country), 'payment_method' => 'CARD', 'customer_email' => $request->input('customer_email'), - 'customer_name' => $request->input('firstname'), - 'customer_surname' => $request->input('lastname'), + 'customer_name' => $request->input('customer_name'), + 'customer_surname' => $request->input('customer_surname'), 'customer_address' => $request->input('customer_address'), 'customer_city' => $request->input('customer_city'), 'customer_country' => $request->input('customer_country'), @@ -1195,8 +1195,8 @@ class iLinkTransactionController extends Controller 'currency' => $this->getCurrency($init_country), 'payment_method' => 'CARD', 'customer_email' => $request->input('customer_email'), - 'customer_name' => $request->input('firstname'), - 'customer_surname' => $request->input('lastname'), + 'customer_name' => $request->input('customer_name'), + 'customer_surname' => $request->input('customer_surname'), 'customer_address' => $request->input('customer_address'), 'customer_city' => $request->input('customer_city'), 'customer_country' => $request->input('customer_country'),