10 lines
276 B
PHP
10 lines
276 B
PHP
<?php
|
|
|
|
Route::group([
|
|
'prefix' => 'signed',
|
|
'middleware' => 'signed',
|
|
'namespace' => 'Modules\PaypalStandard\Http\Controllers'
|
|
], function () {
|
|
Route::get('invoices/{invoice}/paypal-standard', 'Payment@show')->name('signed.invoices.paypal-standard.show');
|
|
});
|