Skip to content

Commit 545ec7d

Browse files
committed
fixed portal route issue..
1 parent eb44e06 commit 545ec7d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Providers/Main.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public function loadRoutes()
5959
}
6060

6161
$routes = [
62+
'guest.php',
6263
'portal.php',
6364
'signed.php',
6465
];

Routes/portal.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@
1111

1212
Route::portal('paypal-standard', function () {
1313
Route::get('invoices/{invoice}', 'Payment@show')->name('invoices.show');
14-
Route::post('invoices/{invoice}/confirm', 'Payment@confirm')->withoutMiddleware(VerifyCsrfToken::class)->name('invoices.confirm');
15-
Route::post('invoices/{invoice}/return', 'Payment@return')->withoutMiddleware(VerifyCsrfToken::class)->name('invoices.return');
16-
Route::get('invoices/{invoice}/cancel', 'Payment@cancel')->name('invoices.cancel');
1714
});

0 commit comments

Comments
 (0)