コード例 #1
0
ファイル: LandingController.php プロジェクト: appsmambo/beula
 public function index()
 {
     $cursos = Cursos::where('estado', '=', 1)->get()->toArray();
     return View::make('frontend.landing')->with('cursos', $cursos);
 }