public function index()
 {
     $types = SemesterEventType::all();
     return view('academycycle::semestereventtypes.index', compact('types'));
 }
 public function index(SEtype $SEtype)
 {
     $types = $SEtype->all();
     return view('academycycle::semestereventtypes.index', compact('types'));
 }