Added view forms

This commit is contained in:
2020-05-07 00:36:33 +01:00
parent f52b249834
commit 290104eea7
5 changed files with 138 additions and 10 deletions

View File

@@ -73,6 +73,9 @@ Route::group(['middleware' => 'auth'], function(){
Route::post('forms/save', 'FormController@saveForm')
->name('saveForm');
Route::delete('forms/destroy/{id}', 'FormController@destroy')
->name('destroyForm');
Route::get('forms', 'FormController@index')
->name('showForms');