Added save function to save button

This commit also improves how forms are parsed by PHP by passing them as arrays, therefore making them easier to process.
Note: One of the files contains a debug statement that will be removed in the next commit
This commit is contained in:
2020-05-06 03:44:39 +01:00
parent dd3213e918
commit 2df5bf144d
4 changed files with 26 additions and 7 deletions

View File

@@ -12,4 +12,9 @@ class FormController extends Controller
return view('dashboard.administration.forms');
}
public function saveForm(Request $request)
{
dd($request->all());
}
}