We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb44e06 commit 545ec7dCopy full SHA for 545ec7d
Providers/Main.php
@@ -59,6 +59,7 @@ public function loadRoutes()
59
}
60
61
$routes = [
62
+ 'guest.php',
63
'portal.php',
64
'signed.php',
65
];
Routes/portal.php
@@ -11,7 +11,4 @@
11
12
Route::portal('paypal-standard', function () {
13
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');
17
});
0 commit comments