Explorar o código

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

kely hai 8 meses
pai
achega
919fd7830e
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  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();