update 11_4_2019

This commit is contained in:
Frank John Begornia
2019-11-04 17:21:09 +08:00
parent 2680ddc5bd
commit eef4d27944
10 changed files with 58 additions and 35 deletions

View File

@@ -252,7 +252,12 @@ class DesignerController extends Controller {
$templateCode = $post['templateCode'];
$default_template_color_array = $newDesignerModel->selectDefaultTemplateColor($templateCode);
echo json_encode($default_template_color_array);
// var_dump($default_template_color_array);
return response()->json(array(
'success' => true,
'default_template_color_array' => $default_template_color_array
));
}