Laravel - can you just do the backend first?

0

I'm learning laravel and I can do some things (work with routes, migrations, eloquent, controllers, etc.).

However, I get hit with the front, because I do not know the best way to work with this framework, so I spend a lot of time frying my brain with it and I do not really develop what I want, so I would like to know if I can do the whole backend first and then yes go pro font?

    
asked by anonymous 21.04.2018 / 22:27

1 answer

3

Yes , it is possible.

You can apply the approach known as " API First ", where you get planning the API before any development , both back end and front end .

With the design of your application (flow of inputs and outputs) it is possible to trigger both the back end and the front end simultaneously with another person for example.

Reference: Three Principles of API First Design

    
23.04.2018 / 21:21