Laravel and Front-End

3

Well, I wanted the opinion of some dev's who have been through the same dilemma I'm going through now, I do not know if this is the right channel to ask that question.

I have to build an application, I want to do it in Laravel, for the backEnd is very good, but I'm wondering if Laravel would meet me in frontEnd, I saw that it has a template ready to attach to the project, that helps a lot. But I wonder if the frontEnd part is recommended to do with a front language like the Angular, or does Laravel answer well? Anyway, is laravel good for front-end? Because my application needs to be very dynamic and pass a good experience to the user.

    
asked by anonymous 02.01.2018 / 17:17

1 answer

3

I would recommend using a framework of its own for the front end since as you said yourself, you need to pass a good experience to the user, and the screens are not so cool.

In addition to that I believe it is better to separate the front end and back end in a very explicit way, in which the front end is only nourished by the routes of the back end, without any connection between them. >

I believe that separating in this way makes it easier to maintain the project and even understand the project, since it will be using a focused framework for the front end.

Currently where Angular work is used, however a framework that I have more sympathy is the VueJS .

    
02.01.2018 / 18:00