09-06-2026 - Andrés Cruz
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.
09-03-2026 - Andrés Cruz
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.
07-12-2025 - Andrés Cruz
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.
10-03-2026 - Andrés Cruz
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.
07-05-2026 - Andrés Cruz
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.
17-11-2025 - Andrés Cruz
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.
18-11-2025 - Andrés Cruz
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.
25-10-2025 - Andrés Cruz
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.