コード例 #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
ファイル: Matiere.php プロジェクト: WizzerOmega/webstock
 public function getAll()
 {
     return Matiere::all();
 }