├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── nafezly-payments.php ├── gateways.jpg ├── payment-gateways.jpg ├── resources ├── lang │ ├── ar │ │ └── messages.php │ └── en │ │ └── messages.php └── views │ └── html │ ├── bigpay.blade.php │ ├── fawry.blade.php │ ├── hyper_pay.blade.php │ ├── kashier.blade.php │ ├── paypal-credit.blade.php │ ├── paysky.blade.php │ └── stripe.blade.php └── src ├── Classes ├── BaseController.php ├── BigPayPayment.php ├── BinancePayment.php ├── ChangellyPayment.php ├── ClickPayPayment.php ├── CoinPaymentsPayment.php ├── CryptomusPayment.php ├── EnotPayment.php ├── FawryPayment.php ├── HyperPayPayment.php ├── KashierPayment.php ├── MamoPayment.php ├── NowPaymentsInvoicePayment.php ├── NowPaymentsPayment.php ├── OneLatPayment.php ├── OpayPayment.php ├── PayPalCreditPayment.php ├── PayPalPayment.php ├── PaySkyPayment.php ├── PaycecPayment.php ├── PayeerPayment.php ├── PaylinkPayment.php ├── PaymobPayment.php ├── PaymobWalletPayment.php ├── PayopPayment.php ├── PayrexxPayment.php ├── PaytabsPayment.php ├── PerfectMoneyPayment.php ├── PrimePayment.php ├── StripePayment.php ├── TapPayment.php ├── TelrPayment.php ├── ThawaniPayment.php ├── WisePayment.php └── YallaPayPayment.php ├── Exceptions └── MissingPaymentInfoException.php ├── Facades └── NafezlyPaymentsFacade.php ├── Factories └── PaymentFactory.php ├── Interfaces └── PaymentInterface.php ├── NafezlyPaymentsServiceProvider.php └── Traits ├── SetRequiredFields.php └── SetVariables.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/composer.lock -------------------------------------------------------------------------------- /config/nafezly-payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/config/nafezly-payments.php -------------------------------------------------------------------------------- /gateways.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/gateways.jpg -------------------------------------------------------------------------------- /payment-gateways.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/payment-gateways.jpg -------------------------------------------------------------------------------- /resources/lang/ar/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/lang/ar/messages.php -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /resources/views/html/bigpay.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/bigpay.blade.php -------------------------------------------------------------------------------- /resources/views/html/fawry.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/fawry.blade.php -------------------------------------------------------------------------------- /resources/views/html/hyper_pay.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/hyper_pay.blade.php -------------------------------------------------------------------------------- /resources/views/html/kashier.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/kashier.blade.php -------------------------------------------------------------------------------- /resources/views/html/paypal-credit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/paypal-credit.blade.php -------------------------------------------------------------------------------- /resources/views/html/paysky.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/paysky.blade.php -------------------------------------------------------------------------------- /resources/views/html/stripe.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/resources/views/html/stripe.blade.php -------------------------------------------------------------------------------- /src/Classes/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/BaseController.php -------------------------------------------------------------------------------- /src/Classes/BigPayPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/BigPayPayment.php -------------------------------------------------------------------------------- /src/Classes/BinancePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/BinancePayment.php -------------------------------------------------------------------------------- /src/Classes/ChangellyPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/ChangellyPayment.php -------------------------------------------------------------------------------- /src/Classes/ClickPayPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/ClickPayPayment.php -------------------------------------------------------------------------------- /src/Classes/CoinPaymentsPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/CoinPaymentsPayment.php -------------------------------------------------------------------------------- /src/Classes/CryptomusPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/CryptomusPayment.php -------------------------------------------------------------------------------- /src/Classes/EnotPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/EnotPayment.php -------------------------------------------------------------------------------- /src/Classes/FawryPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/FawryPayment.php -------------------------------------------------------------------------------- /src/Classes/HyperPayPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/HyperPayPayment.php -------------------------------------------------------------------------------- /src/Classes/KashierPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/KashierPayment.php -------------------------------------------------------------------------------- /src/Classes/MamoPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/MamoPayment.php -------------------------------------------------------------------------------- /src/Classes/NowPaymentsInvoicePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/NowPaymentsInvoicePayment.php -------------------------------------------------------------------------------- /src/Classes/NowPaymentsPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/NowPaymentsPayment.php -------------------------------------------------------------------------------- /src/Classes/OneLatPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/OneLatPayment.php -------------------------------------------------------------------------------- /src/Classes/OpayPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/OpayPayment.php -------------------------------------------------------------------------------- /src/Classes/PayPalCreditPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PayPalCreditPayment.php -------------------------------------------------------------------------------- /src/Classes/PayPalPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PayPalPayment.php -------------------------------------------------------------------------------- /src/Classes/PaySkyPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaySkyPayment.php -------------------------------------------------------------------------------- /src/Classes/PaycecPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaycecPayment.php -------------------------------------------------------------------------------- /src/Classes/PayeerPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PayeerPayment.php -------------------------------------------------------------------------------- /src/Classes/PaylinkPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaylinkPayment.php -------------------------------------------------------------------------------- /src/Classes/PaymobPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaymobPayment.php -------------------------------------------------------------------------------- /src/Classes/PaymobWalletPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaymobWalletPayment.php -------------------------------------------------------------------------------- /src/Classes/PayopPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PayopPayment.php -------------------------------------------------------------------------------- /src/Classes/PayrexxPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PayrexxPayment.php -------------------------------------------------------------------------------- /src/Classes/PaytabsPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PaytabsPayment.php -------------------------------------------------------------------------------- /src/Classes/PerfectMoneyPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PerfectMoneyPayment.php -------------------------------------------------------------------------------- /src/Classes/PrimePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/PrimePayment.php -------------------------------------------------------------------------------- /src/Classes/StripePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/StripePayment.php -------------------------------------------------------------------------------- /src/Classes/TapPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/TapPayment.php -------------------------------------------------------------------------------- /src/Classes/TelrPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/TelrPayment.php -------------------------------------------------------------------------------- /src/Classes/ThawaniPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/ThawaniPayment.php -------------------------------------------------------------------------------- /src/Classes/WisePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/WisePayment.php -------------------------------------------------------------------------------- /src/Classes/YallaPayPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Classes/YallaPayPayment.php -------------------------------------------------------------------------------- /src/Exceptions/MissingPaymentInfoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Exceptions/MissingPaymentInfoException.php -------------------------------------------------------------------------------- /src/Facades/NafezlyPaymentsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Facades/NafezlyPaymentsFacade.php -------------------------------------------------------------------------------- /src/Factories/PaymentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Factories/PaymentFactory.php -------------------------------------------------------------------------------- /src/Interfaces/PaymentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Interfaces/PaymentInterface.php -------------------------------------------------------------------------------- /src/NafezlyPaymentsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/NafezlyPaymentsServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/SetRequiredFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Traits/SetRequiredFields.php -------------------------------------------------------------------------------- /src/Traits/SetVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nafezly/payments/HEAD/src/Traits/SetVariables.php --------------------------------------------------------------------------------