chore: 🔥 Remove unused extension routes
This commit is contained in:
parent
0b1670ad50
commit
d5e9f3cdaf
3 changed files with 0 additions and 12 deletions
|
@ -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 () {
|
||||
|
|
|
@ -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 () {
|
||||
|
|
|
@ -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 () {
|
||||
|
|
Loading…
Add table
Reference in a new issue