A simple Student Management System built with Laravel and MySQL.
It allows administrators to manage students with features like CRUD operations, search, pagination, and a dashboard overview.
- 📋 Add, View, Edit, and Delete Students
- 🔍 Search students by name, email, or other fields
- 📊 Dashboard with total students and class-wise statistics
- 📑 Pagination for student list
- 🎨 Clean and responsive UI (Bootstrap)
- Backend: Laravel 10+
- Frontend: Blade Templates, Bootstrap 5
- Database: MySQL
- Server: PHP 8.1+
git clone https://github.com/kavitab7/EduTrack.git
cd student-managementcomposer installcp .env.example .envUpdate the .env file with your database credentials:
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
php artisan key:generatephp artisan migratephp artisan serveVisit: http://127.0.0.1:8000