Ejemplo n.º 1
0
 public function postIngredientes(Request $datos)
 {
     $ingredientes = Platillo::where('id', '=', $datos['id'])->with('ingredientes')->get();
     return $ingredientes;
 }