feat: add Gantt chart widget to visualize accepted intern schedules in the admin panel

This commit is contained in:
Ümit Tunç
2026-06-16 15:27:28 +03:00
parent 9361a01c80
commit 6be7f4442a
4 changed files with 301 additions and 0 deletions
@@ -362,4 +362,11 @@ class InternApplicationResource extends Resource
'edit' => Pages\EditInternApplication::route('/{record}/edit'),
];
}
public static function getWidgets(): array
{
return [
Widgets\InternGanttChartWidget::class,
];
}
}