From 16059e306964d4645cd7ce0a385343c4c9e71be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Wed, 29 Sep 2021 16:26:15 +0200 Subject: [PATCH] Add `confirmation` route for payment methods --- routes/client.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/client.php b/routes/client.php index f2e0cd8485a3..c824bbe303c9 100644 --- a/routes/client.php +++ b/routes/client.php @@ -56,6 +56,8 @@ Route::group(['middleware' => ['auth:contact', 'locale', 'check_client_existence Route::get('payment_methods/{payment_method}/verification', 'ClientPortal\PaymentMethodController@verify')->name('payment_methods.verification'); Route::post('payment_methods/{payment_method}/verification', 'ClientPortal\PaymentMethodController@processVerification'); + Route::get('payment_methods/confirm', 'ClientPortal\PaymentMethodController@store')->name('payment_methods.confirm'); + Route::resource('payment_methods', 'ClientPortal\PaymentMethodController')->except(['edit', 'update']); Route::match(['GET', 'POST'], 'quotes/approve', 'ClientPortal\QuoteController@bulk')->name('quotes.bulk');