verschieben des sofortigen verzichts auf das Widerrrufsrecht zum Anlegen des Events

This commit is contained in:
Codex Agent
2025-12-22 13:11:16 +01:00
parent 84234bfb8e
commit c947e638eb
29 changed files with 877 additions and 374 deletions

View File

@@ -316,11 +316,14 @@ Route::prefix('v1')->name('api.v1.')->group(function () {
->name('tenant.billing.transactions');
Route::get('addons', [TenantBillingController::class, 'addons'])
->name('tenant.billing.addons');
Route::post('portal', [TenantBillingController::class, 'portal'])
->name('tenant.billing.portal');
});
Route::prefix('tenant/billing')->middleware('tenant.admin')->group(function () {
Route::get('transactions', [TenantBillingController::class, 'transactions']);
Route::get('addons', [TenantBillingController::class, 'addons']);
Route::post('portal', [TenantBillingController::class, 'portal']);
});
Route::post('feedback', [TenantFeedbackController::class, 'store'])