Rutas de Aprendizaje Libros Cursos Categorías Anuncios

Creating our first route, controllers and setting up our URLs in Laravel

09-06-2026 - Andrés Cruz

Creating our first route, controllers and setting up our URLs in Laravel

Laravel We are going to learn how to use routes in Laravel in a basic way, its structure and how we can use routes to create simple functions that return texts and views.


Routing in CodeIgniter 4: The Definitive Guide to Setting Up Professional CRUD

09-03-2026 - Andrés Cruz

Routing in CodeIgniter 4: The Definitive Guide to Setting Up Professional CRUD

CodeIgniter Having trouble with your routes in CodeIgniter 4? Learn how to configure GET, POST, PUT, DELETE methods, route groups, and resources for scalable development.


Named routes in Django: what they are, how to use them, and why they simplify your code

07-12-2025 - Andrés Cruz

 Named routes in Django: what they are, how to use them, and why they simplify your code

Django Giving our routes a name in our Django projects is one of the features that modern frameworks have and allows us to easily reference these routes from anywhere in our app.


Vue Router in Vue 3: Guide for Single Page Applications (SPA)

10-03-2026 - Andrés Cruz

Vue Router in Vue 3: Guide for Single Page Applications (SPA)

Vue How to manage routes in Vue 3? Learn to configure Vue Router step by step: dynamic routes, subroutes, handling 404 errors, and named views with the modern standard.


Routes, arguments, views and HTTP methods in Laravel

07-05-2026 - Andrés Cruz

Routes, arguments, views and HTTP methods in Laravel

Laravel We will take the first steps with the routes and the views, to start seeing screens through the browser; we’ll also cover using controllers with views; redirects, directives and blade as template engine.


Navigation and routing in Flutter

17-11-2025 - Andrés Cruz

Navigation and routing in Flutter

Flutter Let's see how to work with navigation in Flutter using the following functions: Navigator.push() Navigator.pop() Navigator.pushReplacement() Navigator.pushAndRemoveUntil() Navigator.popUntil() We'll also see how to use Go Router for modern browsing in Flutter.


Getting started with Vue 3 and CodeIgniter 4

18-11-2025 - Andrés Cruz

Getting started with Vue 3 and CodeIgniter 4

Vue Learn how to build a dynamic CRUD (Create, Read, Update, Delete) application using Vue 3 (Options API) and consuming a RESTful API developed in CodeIgniter 4. This guide covers Vue configuration, integration of key libraries, and development best practices.


Routes in Flask

25-10-2025 - Andrés Cruz

Routes in Flask

Flask There are different HTTP methods that we can use to make requests to the server; These methods are nothing more than a set of verbs that are used to perform different types of actions; The most common methods are GET, POST, PUT, PATCH and DELETE.