Skip to content

Apple Pay with Telr - Laravel #13

@MShahzaib3242

Description

@MShahzaib3242

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;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions