瀏覽代碼

删除计划时必须先删除子计划

kely 8 月之前
父節點
當前提交
919fd7830e
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      app/Http/Controllers/API/PlanController.php

+ 3 - 0
app/Http/Controllers/API/PlanController.php

@@ -120,6 +120,9 @@ class PlanController extends Controller
     public function destroy(string $id)
     {
         $plan = Plan::findOrFail($id);
+        if(!empty($plan->children()->first())){
+            throw new \Exception("Please remove the sub-level plan.");
+        }
 
         $plan->delete();