OfflinePayment fixed portal route
This commit is contained in:
		@@ -5,6 +5,6 @@ Route::group([
 | 
			
		||||
    'middleware' => 'portal',
 | 
			
		||||
    'namespace' => 'Modules\OfflinePayments\Http\Controllers'
 | 
			
		||||
], function () {
 | 
			
		||||
    Route::get('invoices/{document}/offline-payments', 'Payment@show')->name('portal.invoices.offline-payments.show');
 | 
			
		||||
    Route::post('invoices/{document}/offline-payments/confirm', 'Payment@confirm')->name('portal.invoices.offline-payments.confirm');
 | 
			
		||||
    Route::get('invoices/{invoice}/offline-payments', 'Payment@show')->name('portal.invoices.offline-payments.show');
 | 
			
		||||
    Route::post('invoices/{invoice}/offline-payments/confirm', 'Payment@confirm')->name('portal.invoices.offline-payments.confirm');
 | 
			
		||||
});
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,6 @@ Route::group([
 | 
			
		||||
    'middleware' => 'signed',
 | 
			
		||||
    'namespace' => 'Modules\OfflinePayments\Http\Controllers'
 | 
			
		||||
], function () {
 | 
			
		||||
    Route::get('invoices/{document}/offline-payments', 'Payment@signed')->name('signed.invoices.offline-payments.show');
 | 
			
		||||
    Route::post('invoices/{document}/offline-payments/confirm', 'Payment@confirm')->name('signed.invoices.offline-payments.confirm');
 | 
			
		||||
    Route::get('invoices/{invoice}/offline-payments', 'Payment@signed')->name('signed.invoices.offline-payments.show');
 | 
			
		||||
    Route::post('invoices/{invoice}/offline-payments/confirm', 'Payment@confirm')->name('signed.invoices.offline-payments.confirm');
 | 
			
		||||
});
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user