tipoEstadoPagoRepository->fetchByDescripcion('depositado'); $data = [ 'pago' => $pago->id, 'estado' => $tipo_estado->id, 'fecha' => (new DateTimeImmutable())->format('Y-m-d') ]; try { $estado = $this->estadoPagoRepository->create($data); $this->estadoPagoRepository->save($estado); return true; } catch (PDOException) { return false; } } }