This commit is contained in:
Ludovic CANDELLIER
2022-11-11 13:05:40 +01:00
parent f89acd9399
commit 7df2421373
104 changed files with 1212 additions and 764 deletions

10
routes/paybox.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
Route::prefix('Payment')->name('paybox.')->group(function () {
Route::get('accepted', 'Shop\PayboxController@accepted')->name('accepted');
Route::get('refused', 'Shop\PayboxController@refused')->name('refused');
Route::get('aborted', 'Shop\PayboxController@aborted')->name('aborted');
Route::get('waiting', 'Shop\PayboxController@waiting')->name('waiting');
Route::get('process', 'Shop\PayboxController@process')->name('process');
});