|
@@ -33,6 +33,7 @@ class HousekeeperOrderController extends Controller
|
33
|
33
|
$notes = $request->input('notes');
|
34
|
34
|
$status = $request->input('status');
|
35
|
35
|
$price = $request->input('price');
|
|
36
|
+ $type = $request->input('type');
|
36
|
37
|
//$photo = $request->input('photo');
|
37
|
38
|
if ($id) {
|
38
|
39
|
$housekeeperOrder = HousekeeperOrder::find($id);
|
|
@@ -54,6 +55,7 @@ class HousekeeperOrderController extends Controller
|
54
|
55
|
$housekeeperOrder->contact = $contact;
|
55
|
56
|
$housekeeperOrder->notes = $notes;
|
56
|
57
|
$housekeeperOrder->phone = $phone;
|
|
58
|
+ $housekeeperOrder->type = $type;
|
57
|
59
|
$housekeeperOrder->wechat_id = $wechat_id;
|
58
|
60
|
$housekeeperOrder->photo = "https://wechat.sotype.com/storage/gOtuHM3GvKva6x68N340DJuN6cX1oIfaAhWi8yoq.jpeg";
|
59
|
61
|
$housekeeperOrder->save();
|