|
@@ -30,6 +30,7 @@ class HousekeeperOrderController extends Controller
|
30
|
30
|
$address = $request->input('address');
|
31
|
31
|
$contact = $request->input('contact');
|
32
|
32
|
$phone = $request->input('phone');
|
|
33
|
+ $notes = $request->input('notes');
|
33
|
34
|
$status = $request->input('status');
|
34
|
35
|
$price = $request->input('price');
|
35
|
36
|
//$photo = $request->input('photo');
|
|
@@ -51,6 +52,7 @@ class HousekeeperOrderController extends Controller
|
51
|
52
|
$housekeeperOrder->area = $area;
|
52
|
53
|
$housekeeperOrder->address = $address;
|
53
|
54
|
$housekeeperOrder->contact = $contact;
|
|
55
|
+ $housekeeperOrder->notes = $notes;
|
54
|
56
|
$housekeeperOrder->phone = $phone;
|
55
|
57
|
$housekeeperOrder->wechat_id = $wechat_id;
|
56
|
58
|
$housekeeperOrder->photo = "https://wechat.sotype.com/storage/gOtuHM3GvKva6x68N340DJuN6cX1oIfaAhWi8yoq.jpeg";
|