This is a simple student database app that allows users to add, edit, and delete students. It is written in PHP and uses MySQL as the database.
Add new students Edit existing students Delete students Search for students View a list of all students
- PHP 7.0 or higher
- MySQL 5.7 or higher Composer
- Clone the repository
- Run composer install
- Create a database and import the database.sql file
- Edit the .env file to set your database credentials
- Run php artisan serve
The app can be accessed at http://localhost:8000.
- To add a new student, click the "Add Student" button. Fill out the form and click the "Submit" button.
- To edit an existing student, click the "Edit" button next to the student's name. Make your changes and click the "Update" button.
- To delete a student, click the "Delete" button next to the student's name.
- To search for a student, enter the student's name or email address in the search bar and click the "Search" button.
- To view a list of all students, click the "List Students" button.