28-03-2024 - Andrés Cruz
MVC The MVC pattern is one of the most common design patterns in software development and is partially implemented by Laravel since Laravel is not a pure MVC framework, but it allows you to create the controller layer in various ways using routes, components, among others.
28-03-2024 - Andrés Cruz
MVC El patrón MVC es uno de los patrones de diseños más comunes en el desarrollo de software y que es implementado por Laravel de manera parcial ya que Laravel no es un framework MVC puro si no, permite crear la capa de controlador de diversas maneras mediante rutas, componentes, entre otros.
20-10-2023 - Andrés Cruz
MVC It explains how to generate entities through the bin/console in symfony, mapping the relationships from the database.
19-08-2023 - Andrés Cruz
MVC We are going to talk about basic details that we must know before working with Django, such as knowing what a framework is, a pattern and the MVC pattern and its variation known in Django as MTV.
19-07-2023 - Andrés Cruz
MVC In this post we are going to see some essential commands and configurations when creating any application in Django, from preparing the environment, configuring MySQL, creating our first model and our CRUD.
15-07-2023 - Andrés Cruz
MVC Learn how to create master views in Django to reuse templates or generic HTML views.
14-07-2023 - Andrés Cruz
MVC We are going to see two different ways that we have to load views in our application; using the include function and manually.
11-07-2023 - Andrés Cruz
MVC We are going to see how we can create a model in Django, which remember is one of the MTV layers of our application and the one in charge of managing its data; we will also see how to define different fields.
18-04-2023 - Andrés Cruz
MVC In this post we will see how we can create our first hello world in CodeIgniter 4, we will learn how to work with Views and Controllers, as well as routes.
18-04-2023 - Andrés Cruz
MVC We are going to work with the models layer in CodeIgniter 4, which has been one of the layers of our MVC that allows us to work with the data; and we are going to know all the main properties of the models in C4.