Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $matieres = Matiere::all();
     return View('app/gestion_cours', ['matieres' => $matieres]);
 }
Ejemplo n.º 2
0
 public function index_api()
 {
     return Matiere::all();
 }
Ejemplo n.º 3
0
 public function getAll()
 {
     return Matiere::all();
 }