I've integrated telr gateway in my website using this package in my Laravel project. Its working fine. But now I want to add apple pay option as well.
I don't know how can I do it.
Is there anyone who can help?
That's how I integrated it using Credit Cards
case 'credit':
$telrManager = new \TelrGateway\TelrManager();
$billingParams = [
'first_name' => $request->name,
'sur_name' => $request->name,
'phone' => $request->phone,
'address_1' => $request->address,
'address_2' => $request->area,
'city' => $request->state,
'country' => 'ae',
'email' => $request->email,
];
return $telrManager->pay($tracking, $amount, $note, $billingParams)->redirect();
break;
I've integrated telr gateway in my website using this package in my Laravel project. Its working fine. But now I want to add apple pay option as well.
I don't know how can I do it.
Is there anyone who can help?
That's how I integrated it using Credit Cards