An e-portfolio and ranking system for the Paulinian Student Government built with Laravel 11 and Filament v4. This system manages council evaluations, peer assessments, portfolio management, and leadership award applications.
This application provides systematic evaluation of student council members through:
- Multi-tiered evaluation process (Self, Peer, Adviser evaluations)
- Portfolio management for student achievements and certificates
- Automated ranking calculations based on weighted evaluation scores
- Leadership award applications for graduating students
- Administrative dashboard for managing councils, users, and evaluations
- Role-based access control (Admin, Adviser, Student)
- User Management: Create and manage admin, adviser, and student accounts
- Council Management: Setup and configure student councils with award types
- Evaluation Management: Create evaluation sessions and monitor progress
- Award Type Management: Define various leadership award categories
- Award Applications: Review and process student award applications
- System-wide Analytics: Monitor evaluations, users, and council activities
- My Evaluations: Access assigned council evaluations
- Student Management: Add students to evaluations and assign positions
- Peer Evaluator Assignment: Assign peer evaluators to students
- Evaluation Forms: Complete adviser evaluations for students
- Progress Tracking: Monitor evaluation submission status
- My Evaluations: View assigned evaluations and complete forms
- Self-Evaluation: Assess own performance and contributions
- Peer Evaluation: Evaluate assigned peers (when designated)
- My Portfolio: View achievements, certificates, and evaluation history
- Certificate Management: Upload and manage achievement certificates
- Award Applications: Apply for leadership awards (for graduating students)
Student Council Ranking System
├── app/
│ ├── Models/
│ │ ├── User.php # User accounts (Admin/Adviser/Student)
│ │ ├── Council.php # Student councils/organizations
│ │ ├── AwardType.php # Award type definitions
│ │ ├── Evaluation.php # Evaluation sessions
│ │ ├── EvaluationForm.php # Form responses & scoring engine
│ │ ├── EvaluationPeerEvaluator.php # Peer evaluation assignments
│ │ ├── EvaluationRank.php # Final ranking calculations
│ │ ├── Certificate.php # Achievement certificates
│ │ └── LeadershipAwardApplication.php # Award applications
│ │
│ ├── Http/
│ │ └── Controllers/
│ │ └── EvaluationSubmissionController.php # Evaluation submission logic
│ │
│ ├── Filament/
│ │ ├── Resources/
│ │ │ ├── Users/ # User management (Admin)
│ │ │ ├── Councils/ # Council management (Admin)
│ │ │ ├── AwardTypes/ # Award type management (Admin)
│ │ │ ├── Evaluations/ # Evaluation setup (Admin)
│ │ │ ├── LeadershipAwardApplications/ # Award applications (Admin)
│ │ │ ├── MyEvaluations/ # Evaluator interface (Adviser/Student)
│ │ │ ├── MyPortfolio/ # Student portfolios (Student)
│ │ │ └── Certificates/ # Certificate management (Student)
│ │ │
│ │ ├── Pages/
│ │ │ └── Auth/
│ │ │ └── EditProfile.php # User profile management
│ │ │
│ │ └── Widgets/
│ │ ├── AccountWidget.php # Account information widget
│ │ ├── StatsOverview.php # Student/Adviser statistics
│ │ └── AdminStatsOverview.php # Admin dashboard statistics
│ │
│ └── Providers/
│ └── Filament/
│ └── RankingPanelProvider.php # Filament panel configuration
│
├── resources/
│ └── views/
│ ├── EvaluationForm/ # Custom evaluation interfaces
│ │ ├── AdviserEvaluation.blade.php
│ │ ├── PeerEvaluation.blade.php
│ │ └── SelfEvaluation.blade.php
│ └── Portfolio/
│ └── PortfolioView.blade.php # Portfolio display template
│
└── database/
└── migrations/ # Database schema definitions
-
Admin Creates Evaluation
- Selects council and adviser
- Sets academic year
- Evaluation is created in "pending" status
-
Adviser Manages Students
- Adds student officers to evaluation
- Assigns positions to each student
- Assigns peer evaluators (1-to-1 mapping)
-
Evaluators Complete Forms
- Self: Students evaluate themselves
- Peer: Designated peers evaluate assigned students
- Adviser: Council adviser evaluates all students
-
Automatic Ranking
- System calculates weighted scores
- Generates final rankings
- Displays scores in student portfolios
-
Award Applications
- Graduating students apply for leadership awards
- Admin reviews applications and portfolios
- Awards are accepted/rejected
users- User accounts with roles (admin/adviser/student)councils- Student councils with award type associationsaward_types- Types of leadership awardsevaluations- Evaluation sessionsevaluation_user- Student participation in evaluations (pivot)evaluation_peer_evaluators- Peer evaluator assignmentsevaluation_forms- Evaluation responses and scoresevaluation_ranks- Calculated rankingscertificates- Student achievement certificatesleadership_award_applications- Award applications
- Council → Evaluation (One-to-Many)
- Evaluation → Users (Many-to-Many via pivot)
- Evaluation → EvaluationForms (One-to-Many)
- User → Certificates (One-to-Many)
- User → LeadershipAwardApplications (One-to-Many)
- Framework: Laravel 11
- Admin Panel: Filament v4
- Database: MySQL
- Frontend: Blade Templates, Tailwind CSS (via Filament)
- Authentication: Laravel Breeze (Filament integration)
- File Storage: Laravel Storage (for certificates and profile pictures)
-
Clone the repository
git clone <repository-url> cd ranking-sys
-
Install dependencies
composer install npm install
-
Configure environment
cp .env.example .env php artisan key:generate
-
Setup database
- Create database
- Update
.envwith database credentials
php artisan migrate
-
Create storage link
php artisan storage:link
-
Run development server
php artisan serve npm run dev
-
Access the system
- Navigate to
http://localhost:8000/ranking - Login with your credentials
- Navigate to
