From 737e077cfe3b290e717bf74b0b1e416f04683196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 19 Jan 2021 12:02:54 +0300 Subject: [PATCH] Paypal standard protal route fixed.. --- modules/PaypalStandard/Routes/portal.php | 2 +- modules/PaypalStandard/Routes/signed.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/PaypalStandard/Routes/portal.php b/modules/PaypalStandard/Routes/portal.php index d6ece825b..b9606d820 100644 --- a/modules/PaypalStandard/Routes/portal.php +++ b/modules/PaypalStandard/Routes/portal.php @@ -5,5 +5,5 @@ Route::group([ 'middleware' => 'portal', 'namespace' => 'Modules\PaypalStandard\Http\Controllers' ], function () { - Route::get('invoices/{document}/paypal-standard', 'Payment@show')->name('portal.invoices.paypal-standard.show'); + Route::get('invoices/{invoice}/paypal-standard', 'Payment@show')->name('portal.invoices.paypal-standard.show'); }); diff --git a/modules/PaypalStandard/Routes/signed.php b/modules/PaypalStandard/Routes/signed.php index a7a471871..b1b2594de 100644 --- a/modules/PaypalStandard/Routes/signed.php +++ b/modules/PaypalStandard/Routes/signed.php @@ -5,5 +5,5 @@ Route::group([ 'middleware' => 'signed', 'namespace' => 'Modules\PaypalStandard\Http\Controllers' ], function () { - Route::get('invoices/{document}/paypal-standard', 'Payment@show')->name('signed.invoices.paypal-standard.show'); + Route::get('invoices/{invoice}/paypal-standard', 'Payment@show')->name('signed.invoices.paypal-standard.show'); });