I'm working on a project to create a web application that manages hospital rooms. The app will have two roles: Secretaries who have full access to manage everything, including patient information and room assignments, and Doctors who have limited access, allowing them to view only their assigned patients' information and history. I'm looking for advice on how to get started with this project and would really appreciate any guidance!
3 Answers
First off, what's your tech stack? Knowing what you're using can really help others give you the best advice. I suggest trying HTML, CSS, JavaScript with React for the frontend, and Laravel with MySQL for the backend—might be a good combo!
A solid next step would be to sketch out your data relationships. Basically, figure out how the data tables will connect and what links you'll need. After that, try mocking up the UI—a main menu, login page, and a way to switch modes based on user roles. Get some feedback on your designs before diving into the code!
Thank you so much for the advice!
Just a heads-up—are you building this for a real-world application or just for school? If it's for production, you need to be super careful about HIPAA compliance since you're dealing with sensitive patient data. If it's just a final year project, that’s a bit different, but still, be cautious!
It's for a final year project.
I'm thinking of using HTML, CSS, JavaScript, React, Bootstrap, Laravel, and MySQL.