in the actual project development of PHP, there is little real application of design patterns in business logic. why?
suppose a simple scenario: using yii2 or laravel to develop user management-related functions, most of the time a simple MVC is created, instead of defining the user interface, and then inheriting it, then polymorphism, and then naturally leads to the factory pattern and so on.
however, in the actual project, it seems that MVC is done with one click, and it doesn"t really create its own new pattern classes to apply. In what position should it be used? Or should that pose be used when writing stand-alone projects such as extension components?