add StoreForm route

This commit is contained in:
philipp lang 2023-12-28 00:32:48 +01:00
parent e0558e4b13
commit 1b5c83a414
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ use App\Efz\ShowEfzDocumentAction;
use App\Group\Actions\GroupApiIndexAction;
use App\Group\Actions\GroupBulkstoreAction;
use App\Group\Actions\GroupIndexAction;
use App\Form\Actions\FormStoreAction;
use App\Form\Actions\FormtemplateIndexAction;
use App\Form\Actions\FormtemplateStoreAction;
use App\Form\Actions\FormtemplateUpdateAction;
@ -148,4 +149,5 @@ Route::group(['middleware' => 'auth:web'], function (): void {
Route::get('/formtemplate', FormtemplateIndexAction::class)->name('formtemplate.index');
Route::post('/formtemplate', FormtemplateStoreAction::class)->name('formtemplate.store');
Route::patch('/formtemplate/{formtemplate}', FormtemplateUpdateAction::class)->name('formtemplate.update');
Route::post('/form', FormStoreAction::class)->name('form.store');
});