Se modifica token de reset-password

This commit is contained in:
2026-03-12 13:33:32 -06:00
parent 7c1374f4a1
commit 46a0f8b1c3
4 changed files with 8 additions and 6 deletions
+5 -3
View File
@@ -255,9 +255,11 @@ class DataProspecto extends Component
$q->where('plantels.id', $this->pplantels)
)->get();
$this->planesPago = Plane::whereHas('planPlantel', function ($q) {
$q->where('plantels.id', $this->pplantels);
})->get();
$this->planesPago = Plane::where('nivel', $this->selectedNivel)
->whereHas('planPlantel', function ($q) {
$q->where('plantels.id', $this->pplantels);
})
->get();
$this->conceptosNombres = Concepto::where('tipo','=','3' )->get();