Model view controller in Laravel - MVC

28-03-2024 - Andrés Cruz

Model view controller in Laravel - MVC

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.

Continuar leyendo


Modelo vista controlador en Laravel - MVC

28-03-2024 - Andrés Cruz

Modelo vista controlador en Laravel - MVC

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.

Continuar leyendo


Doctrine mapping files and entities in Symfony

20-10-2023 - Andrés Cruz

Doctrine mapping files and entities in Symfony

MVC It explains how to generate entities through the bin/console in symfony, mapping the relationships from the database.

Continuar leyendo


The MTV design pattern in Django and its relationship to MVC

19-08-2023 - Andrés Cruz

The MTV design pattern in Django and its relationship to MVC

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.

Continuar leyendo


Essential commands and configurations when creating any application in Django

19-07-2023 - Andrés Cruz

Essential commands and configurations when creating any application in Django

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.

Continuar leyendo


Generate the master or base template in an app in Django

15-07-2023 - Andrés Cruz

Generate the master or base template in an app in Django

MVC Learn how to create master views in Django to reuse templates or generic HTML views.

Continuar leyendo


Load views into files from URLs in Django

14-07-2023 - Andrés Cruz

Load views into files from URLs in Django

MVC We are going to see two different ways that we have to load views in our application; using the include function and manually.

Continuar leyendo


Creating models in Django

11-07-2023 - Andrés Cruz

Creating models in Django

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.

Continuar leyendo


Creating our first hello world in CodeIgniter 4 and learning about controllers and views

18-04-2023 - Andrés Cruz

Creating our first hello world in CodeIgniter 4 and learning about controllers and views

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.

Continuar leyendo


Create models in CodeIgniter 4

18-04-2023 - Andrés Cruz

Create models in CodeIgniter 4

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.

Continuar leyendo


)