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