Magento 2

How to create back in magento 2 via command line

here is a simple command used to create backup : Below cmd creates full system backup containing Magento 2 file system, the media directory, and the database; you can see the corresponding flags –code, –media, –db I used. It automatically enables maintenance flag and disable once completed. Happy coding 🙂

How to Exclude External Js from Minification, Bundling and Merge in Magento 2

Basically Js minification is a part of Optimization of Magento, When we enable the minification and bundling then all the js files get merged into single file and cached, that leads to faster loading of JS.For more details please visit this link Optimise-Js-Files Previously we used to create the after Plugin as below, to exclude …

How to Exclude External Js from Minification, Bundling and Merge in Magento 2 Read More »

Magento 2 ViewModel as per Single Responsibility Principle

Before studying ViewModel feature of Magento 2, let’s understand first SRP.SRP stands for Single Responsibility Principle, Every class should have responsibility over a single part of the functionality provided by the software, and that responsibility should be entirely encapsulated by the class.In simple words : Each class should ideally have only one purpose to change.Basically this is a part …

Magento 2 ViewModel as per Single Responsibility Principle Read More »

How to create Customer Address Attribute in Magento 2

Before we start the Implementation, lets understand the few terms that we are going to use in further blog.– Eav (entity attribute value)– Entity– Attribute or Property– FormsEAV stands for Entity Attribute and Value, Eav is a data model which describes the Entities where attributes are the properties or Arguments or parameters. Basically EAV is …

How to create Customer Address Attribute in Magento 2 Read More »

Scroll to Top