From 0e0aaf2cc6ce79d093c80717ce8ce812bb45cfe6 Mon Sep 17 00:00:00 2001 From: Marco Glietsch Date: Mon, 23 Nov 2020 21:22:29 +0100 Subject: [PATCH] Korrektur Anmeldeformular. Vom Ortsnamen wurde nur der erste Buchstabe gespeichert --- app/Http/Controllers/ContactController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ContactController.php b/app/Http/Controllers/ContactController.php index 3e75765b..fc750761 100644 --- a/app/Http/Controllers/ContactController.php +++ b/app/Http/Controllers/ContactController.php @@ -85,7 +85,7 @@ class ContactController extends ExtendedController $model = new SubscribeChild(); $model->fill($request->all()); $model->age = $request->age; - $model->city = $request->city[0]; +# $model->city = $request->city[0]; $model->save(); $view = view("inc.contact.subscribeSuccess");