arreglo eliminacion plan2
This commit is contained in:
parent
0682f9c375
commit
d2a2614da8
@ -419,8 +419,15 @@ public function updatePlan(Request $request)
|
||||
public function deletePlan($id)
|
||||
{
|
||||
$id_user = auth()->user();
|
||||
$plan = plan::find($id);
|
||||
if (!$plan) {
|
||||
return response([
|
||||
"status" => 0,
|
||||
"message" => "!No se encontro el plan",
|
||||
], 404);
|
||||
}
|
||||
|
||||
if ($id_user->isCreadorPlan($id) or $id_user->isAdmin()) {
|
||||
$plan = plan::where(["id" => $id, "id_user" => $id_user->id])->first();
|
||||
$plan->delete();
|
||||
return response([
|
||||
"status" => 1,
|
||||
@ -429,7 +436,7 @@ public function deletePlan($id)
|
||||
} else {
|
||||
return response([
|
||||
"status" => 0,
|
||||
"message" => "!No se encontro el plan de mejora o no esta autorizado",
|
||||
"message" => "!No esta autorizado par realizar esta accion",
|
||||
], 404);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user