shoppingmallv2 init...

This commit is contained in:
최준흠git config git config --helpgit config --global user.name 최준흠 2023-08-09 19:16:36 +09:00
parent 474a5df7fb
commit 7b513f1e66
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ class OrderController extends AdminController
return ["user_uid", 'product_uid', "name", "cost", "sale", "quantity", "price", "status", "updated_at", "created_at"]; return ["user_uid", 'product_uid', "name", "cost", "sale", "quantity", "price", "status", "updated_at", "created_at"];
break; break;
default: default:
return throw new \Exception("{$action} 해당기능은 없습니다."); return [];
break; break;
} }
} }

View File

@ -32,7 +32,7 @@ class UserController extends AdminController
return ["id", 'name', "email", "email", "phone", "role", "status", 'updated_at', 'created_at']; return ["id", 'name', "email", "email", "phone", "role", "status", 'updated_at', 'created_at'];
break; break;
default: default:
return throw new \Exception("{$action} 해당기능은 없습니다."); return [];
break; break;
} }
} }

View File

@ -71,7 +71,7 @@ class UserController extends FrontController
return ["id", 'name', "email", "phone", "mobile", 'updated_at', 'created_at']; return ["id", 'name', "email", "phone", "mobile", 'updated_at', 'created_at'];
break; break;
default: default:
return throw new \Exception("{$action} 해당기능은 없습니다."); return [];
break; break;
} }
} }