How to create Magento 2 Routing

How to create Magento 2 Routing

30 Nov 2020
In web applications, such as Magento, routing is the act of providing data from a URL request to the appropriate class for processing
How to create CRUD Models in Magento 2

How to create CRUD Models in Magento 2

26 Nov 2020
Models are an important part of the MVC model. In Magento 2, Models is responsible for working with the database, and is divided into three parts: Model, Resource Model and Collection. They are used to work with CRUD operations (create, read, update, delete) without writing any more SQL code.