Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

giuszeppe's avatar

Laravel & Vue powered APP how to organize team work.

Hi! In these day i decided with a friend who study frontend to start the develop of our idea. We was thinking which is the best way to work together since the app is a Vue app that interface to an API powered by Laravel. What should we do to work together? Create two different GitHub repository downloading every time the new version the other has worked on to test the API (for me) and the SPA (for him) ? hosting online the API so he can do request to the API instead of locally running it? If you understanded the question, you're welcome if you decide to share with me your personal experience. Thanks in advance and sorry for some bad english!

0 likes
2 replies
martinbean's avatar

Create two different GitHub repository downloading every time the new version the other has worked on to test the API (for me) and the SPA (for him)

@giuszeppe No. Why do you think this would be a good idea? Now you’ve got to coordinate feature development, integration, and deployment of a single feature across two repositories. You’re literally doubling your effort.

Just have a single repository. That way you can work on both the back-end and front-end for a feature in a single branch in a single repository, instead of messing about with two different branches in two different repositories.

Please or to participate in this conversation.