Update web_routes.php

This commit is contained in:
Dennis 2023-03-09 12:43:38 +01:00 committed by GitHub
parent 4ae54d736f
commit ad9e33d0d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',