6
vhoyer
7y

any thought about the best way to start a solo project? I think going for the db schema first is easier, curious to see your opinion 😁

Comments
  • 0
    That is what I prefer to do.
  • 1
    TDD. A course called "Test Driven Laravel" has taught me how to approach starting new projects better.
  • 0
    Plan everything first, otherwise you will edit that db schema many times. The test driven Laravel thing makes sense
  • 2
    I start thinking from the user side. What all functionalities should be given to the user. Based on that, I make an architecture of the project and then I design the db schema. Though I have to reiterate many times over in this process but in the end I would have covered every possibility and test cases
  • 1
    Database schema and mock-ups in parallel before writing any line of code.
  • 0
    Get the model right first is always a good start :) you might have to live with it for a while
Add Comment