From ad9e33d0d7ea94659bb6dfd08b77ceab1cfe8a2e Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 9 Mar 2023 12:43:38 +0100 Subject: [PATCH] Update web_routes.php --- app/Extensions/PaymentGateways/PayPal/web_routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Extensions/PaymentGateways/PayPal/web_routes.php b/app/Extensions/PaymentGateways/PayPal/web_routes.php index 49660aa5..56497768 100644 --- a/app/Extensions/PaymentGateways/PayPal/web_routes.php +++ b/app/Extensions/PaymentGateways/PayPal/web_routes.php @@ -5,9 +5,9 @@ use Illuminate\Support\Facades\Route; include_once(__DIR__ . '/index.php'); Route::middleware(['web', 'auth'])->group(function () { - Route::get('payment/PaypalPay/{shopProduct}', function () { + Route::get('payment/PayPalPay/{shopProduct}', function () { PaypalPay(request()); - })->name('payment.PaypalPay'); + })->name('payment.PayPalPay'); Route::get( 'payment/PayPalSuccess',