Exemplo n.º 1
0
 public function addStudent()
 {
     $vue = new VueEtu(Groupe::all()->toArray());
     $vue->showForm();
 }
Exemplo n.º 2
0
 /**
  * affiche les étudiants
  */
 public function students()
 {
     $listg = Student::all();
     $vue = new VueEtu($listg->toArray());
     $vue->render(1);
 }