Slightly less than six months ago, he left college and was engaged in web development.

Now watched some tutorials on Angular JS. The structure of the application is clear, but is it possible to bring it under the MVC pattern? Codil in Django and Laravel, and everything is clear there - here are the controllers, routes, models, views — go for it! Angular is not very familiar ... MB MVC is not at all suitable for Angular?

    2 answers 2

    Well, as it is also possible

    angular.module('app').component('name', { templateUrl:'', controller: function nameContriller () { } }) 

    type of controller separate and view

      Angulyar has separate components - view from MVC, that is, everything that is loaded on the page as a result. The controller is the controller, the Service is the model, in the case when it is used to retrieve data. Not quite the expected Model-View-Controller, but nevertheless still MVC.