Fixed recording of orders and order notes

This commit is contained in:
Deon George
2019-06-17 13:17:58 +10:00
parent 4c5c43c390
commit 3ff82f5f10
7 changed files with 30 additions and 21 deletions

View File

@@ -19,6 +19,12 @@ class AdslPlan extends Model
'validation'=>'required|string:10',
'validation_message'=>'Address is a required field.',
],
'options.notes'=>[
'request'=>'options.notes',
'key'=>'order_info.notes',
'validation'=>'present',
'validation_message'=>'Special Instructions here.',
],
];
protected $order_model = Service\Adsl::class;