WIP: Road to 1.0.0 #1

Draft
miguel456 wants to merge 123 commits from develop into master
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 8769f279ac - Show all commits

View File

@ -266,6 +266,9 @@ Route::group(['prefix' => LaravelLocalization::setLocale(), 'middleware' => ['lo
Route::delete('forms/destroy/{form}', [FormController::class, 'destroy'])
->name('destroyForm');
Route::delete('forms/destroy/{form}/confirm', [FormController::class, 'performConfirmedDeletion'])
->name('destroyFormConfirm');
Route::get('forms', [FormController::class, 'index'])
->name('showForms');