added shipping fee voucher code

This commit is contained in:
franknstayn
2022-02-26 20:20:43 +08:00
parent c15e614c3e
commit b25f55dbdd
5 changed files with 48 additions and 8 deletions

View File

@@ -470,7 +470,7 @@ class DesignerController extends Controller {
$newDesignerModel = new DesignerModel;
$post = $request->all();
$clientId = Auth::user()->id;
$design_name = $post['design_name'];
$design_name = str_replace(array("\r", "\n"), '', $post['design_name']);
$tempDecode = json_decode($_POST['templateDetails']);
$getTemPlateCode = $tempDecode[0]->templateCode;