Team-repo for CRUD Challenge BeCode Initial Challenge can be found here : Php-Crud
Team Members: Barbara Cristina Nunes, Sushanta Pyakurel, Reinout De Bleser
Team Member Github profiles:
- Repository:
php-crud
- Type of Challenge:
Learning Challenge
- Duration:
3 days
- Deployment strategy :
NA
- Team challenge :
team of 3
- To be able to connect to a database
- To be able to write a simple Create, Read, Update & Delete (CRUD) application
- Use a provided MVC structure to work into.
Our team will create a CRUD system to store student, teacher and class information in the database. No login necessary, everyone with access can do anything in the files
Our team will use the MVC structure provided in the PHP MVC Boilerplate repo provided by our coach, to GIT CRACKIN'!
In this assigment we will end up with at least 3 models and 3 controllers, but you could end up with more. Model the software how you want it!
Strategy is to create seperate MVC's for each class. Learn from each other this way by giving freedom to give it our best shot initially and working together to learn from each others experience. The main challenge is to not have time-consuming merge conflicts and work together effectively with a team we've not previously worked with a lot.
Day 1: before lunch. reflections
Judging by Sushanta's experience the challenge seems very manageable and our goal is to reach all the must-haves by tomorrow around lunch and nice-to-haves by the end of the 3 days.
10h20: finished basic folder stucture.
Database building,
Day 1: divide the CRUD in 3:
- Classroom: Reinout
- Student: Sushanta
- Teacher: Barbara
We have to provide the following pages for Students, Teacher & Class. ✔️
- A general overview of all records of that entity in a table ✔️
- Each row should have a button to edit or delete the entity ✔️
- This page should have a "create new" button ✔️
- Each row should have a button to edit or delete the entity ✔️
- A detailed overview of the selected entity ✔️
- This should include a button to delete this entity ✔️
- Edge case: A teacher cannot be removed if he is still assigned to a class
- Edge case: If you remove a class, make sure to remove the link between the students and the class.
- A page to edit an existing entity ✔️
- A page to create a new entity ✔️
On the general overview table you can yourself decide what would be useful information to show. ✔️
On the detailed overview you have to provide the following information:
- Name ✔️
- Email ✔️
- Class (with clickable link) v
- Assigned teacher (clickable link - relation via class) ✔️
- Name ✔️
- Email ✔️
- List of all students currently assigned to him (clickable link) ✔️
- Name class (Giertz, Lamarr, ...) ✔️
- Location (Antwerp, Gent, Genk, Brussels, Liege) ✔️
- Assigned teacher (clickable link) ✔️
- List of assigned students (clickable link) ✔️
- Add a search bar at the top of each page to search for the names of teachers or students ✔️-ish, not for classrooms but can be implemented fairly easily.
- Make an address entity. An address can be assigned to a student or teacher (where he lives) or to a class (where are the lessons given). not finished.
- Add Basic HTTP Authentication with a
.htaccess
file. -Sushanta started on this. but not entirely finished.