Paypal standard protal route fixed..

This commit is contained in:
Cüneyt Şentürk 2021-01-19 12:02:54 +03:00
parent 5701fd98be
commit 737e077cfe
2 changed files with 2 additions and 2 deletions

View File

@ -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');
});

View File

@ -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');
});