PayTabs Laravel Package makes integration with the PayTabs payment gateway very easy by providing a ready-made payment class that handles the card entry, and billing & shipping information and completes the missing details.


This article is dedicated to walking you through managing the payment methods available for your customers on the payment page. The following payment methods keys can be sent within the "sendPaymentCode" function as shown below:



  • "creditcard"
  • "amex"
  • "mada"
  • "urpay"
  • "unionpay"
  • "stcpay",
  • "valu"
  • "aman"
  • "meezaqr"
  • "omannet"
  • "knet"
  • "knetdebit"
  • "knetcredit
  • "applepay"
  • "samsungpay"


paypage::sendPaymentCode('all')


  • All available Payment methods


    You can send the value "all" to show all available/configured payment methods on your PayTabs account on the payment page. 
    paypage::sendPaymentCode('all')
    This is the default value. In other words, not passing this parameter at all will be the same as passing this "all" value.




  • Multiple Payment methods

    To initiate a payment page with multiple specific payment methods, you can pass a comma-separate string with all the preferred payment methods, as shown below:

    paypage::sendPaymentCode("creditcard, valu");
    paypage::sendPaymentCode("creditcard, valu, applepay")




  • Excluding Payment methods


    You can initiate a payment page with all the configured payment methods, excluding one method or more from being displayed in the payment by adding (-) before the excluded payment method, as shown below:
    paypage::sendPaymentCode("creditcard, -valu");
    paypage::sendPaymentCode("creditcard, -valu, -applepay")






⌂ To get familiar with the whole process and the other steps, kindly navigate to our "The Laravel Packge Integration Manual" solution article. 

And to get familiar with the rest of the steps regarding the previuos step "Step 2 - Configure the integration method" kindly click here.


And to get familiar with the rest of the steps regarding the current step "Step 3 - Initiating the payment" click here.

 And to navigate to the next step in the integration process "Step 4 - Accepting the payment" kindly click here.

TABLE OF CONTENTS