Modificacion de prospecto a alumno y asignacion de grupos, coordinacion académica

This commit is contained in:
2026-03-23 15:48:23 -06:00
parent 58e27fc5fc
commit 1bcebeb8a1
43 changed files with 1551 additions and 96 deletions
+4 -1
View File
@@ -360,7 +360,10 @@ class DataProspecto extends Component
'roles' => Role::whereHas('areas', fn($q) => $q->where('areas.name', 'Promoción'))->get(),
'plantels'=> Plantel::all(),
'user' => Auth::user(),
'campans' => Campan::all(),
'campans' => Campan::whereDate('periodoInicial', '<=', now())
->whereDate('periodoFinal', '>=', now())
->where('status', 1)
->get(),
'medios' => Medio::all(),
]);
}