Sub Navigation
public static function getPages(): array
{
return [
'index' => Pages\ListStudents::route('/'),
'create' => Pages\CreateStudent::route('/create'),
'edit' => Pages\EditStudent::route('/{record}/edit'),
'view' => Pages\ViewStudent::route('/{record}'),
'communications' => Pages\ManageStudentCommunications::route('/{record}/communications'),
'informed-leaves' => Pages\ManageStudentInformedLeaves::route('/{record}/informed-leaves')
];
}
, here communications & informed-leaves getting inside edit but i need separate menu for edit and communications & informed-leaves in one sub navigation. can we achieve this?0 Replies