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
+10 -1
View File
@@ -11,9 +11,18 @@ class PlaneSeeder extends Seeder
public function run(): void
{
Plane::create([
$plan1=Plane::create([
'name' => 'BACHILLERATO',
'status' => 1
]);
$plan1->planPlantel()->sync([1,2,3]);
$plan2=Plane::create([
'name' => 'LICENCIATURA',
'status' => 1
]);
$plan2->planPlantel()->sync([1,2,3]);
}
}