chore: 🔥 Remove unused extension routes

This commit is contained in:
IceToast 2023-06-10 02:03:37 +02:00
parent 0b1670ad50
commit d5e9f3cdaf
3 changed files with 0 additions and 12 deletions

View file

@ -4,10 +4,6 @@ use Illuminate\Support\Facades\Route;
use App\Extensions\PaymentGateways\Mollie\MollieExtension;
Route::middleware(['web', 'auth'])->group(function () {
Route::get('payment/MolliePay/{shopProduct}', function (MollieExtension $mollieExtension) {
$mollieExtension->pay(request());
})->name('payment.MolliePay');
Route::get(
'payment/MollieSuccess',
function () {

View file

@ -4,10 +4,6 @@ use Illuminate\Support\Facades\Route;
use App\Extensions\PaymentGateways\PayPal\PayPalExtension;
Route::middleware(['web', 'auth'])->group(function () {
Route::get('payment/PayPalPay/{shopProduct}', function (PayPalExtension $payPalExtension) {
$payPalExtension->PaypalPay(request());
})->name('payment.PayPalPay');
Route::get(
'payment/PayPalSuccess',
function () {

View file

@ -4,10 +4,6 @@ use Illuminate\Support\Facades\Route;
use App\Extensions\PaymentGateways\Stripe\StripeExtension;
Route::middleware(['web', 'auth'])->group(function () {
Route::get('payment/StripePay/{shopProduct}', function (StripeExtension $stripeExtension) {
$stripeExtension->StripePay(request());
})->name('payment.StripePay');
Route::get(
'payment/StripeSuccess',
function () {