Пример #1
0
 public function mostrar_lugar()
 {
     $tipos = Lugar_Tipo::orderBy('lugar_tipo_nombre', 'ASC')->paginate(5);
     return View::make('lugar_tipo.listaLugar', array('tipos' => $tipos));
 }