Project Introduction

The Coaching Management System is a comprehensive software solution designed to streamline the operations of coaching institutes and educational centers. This system aims to facilitate the management of various aspects of coaching, including student enrollment, class scheduling, attendance tracking, and performance evaluation. With the growing demand for quality education and personalized coaching, the need for an efficient management system has become essential for both educators and students.

The Coaching Management System provides a user-friendly interface for administrators, teachers, and students, allowing them to access relevant information and perform necessary tasks with ease. Key features include student registration, course management, timetable generation, and progress tracking. By automating these processes, the system enhances operational efficiency, improves communication between stakeholders, and ultimately contributes to better educational outcomes.

Project Objectives

  • To develop an intuitive interface for managing student enrollment and course offerings.
  • To automate class scheduling and attendance tracking for improved organization.
  • To provide tools for teachers to evaluate student performance and generate reports.
  • To facilitate communication between students, teachers, and administrators through notifications and messaging.
  • To implement a secure database for storing student and course information.
  • To enable students to access their progress reports and academic resources online.
  • To enhance user engagement through features like feedback forms and surveys.
  • To ensure compliance with educational standards and regulations in coaching management.

Project Modules

User Management Module

  • User Registration/Login: Allow users (administrators, coaches, students, and parents) to create accounts and log in securely.
  • Role Management: Differentiate between user roles (e.g., admin, coach, student, parent) with varying permissions and access levels.
  • Profile Management: Enable users to manage their profiles, including personal information, contact details, and preferences.

Course Management Module

  • Course Creation: Allow administrators and coaches to create and manage courses, including course descriptions, objectives, and prerequisites.
  • Syllabus Management: Upload and organize course materials, including lesson plans, assignments, and resources.
  • Course Scheduling: Schedule classes, including dates, times, locations, and assigned coaches.

Student Management Module

  • Enrollment Management: Allow students to enroll in courses and manage their registrations.
  • Attendance Tracking: Track student attendance for each class and generate attendance reports.
  • Progress Tracking: Monitor student progress throughout the course, including completion of assignments and assessments.

Assessment and Evaluation Module

  • Quiz and Test Creation: Create quizzes, tests, and assignments to evaluate student knowledge and skills.
  • Grading and Feedback: Automatically grade assessments and provide feedback to students.
  • Performance Reports: Generate reports on student performance, including grades, attendance, and participation.

Communication Module

  • Internal Messaging: Facilitate communication between coaches, students, and parents through a secure messaging system.
  • Notifications and Reminders: Send automated notifications and reminders for upcoming classes, assignments, and assessments.

Payment Management Module

  • Fee Structure Management: Define and manage course fees, discounts, and payment plans.
  • Payment Processing: Integrate with payment gateways for secure online transactions.
  • Invoice Generation: Automatically generate invoices for course fees and payments.

Reporting and Analytics Module

  • Performance Analytics: Analyze student performance data to identify trends and areas for improvement.
  • Utilization Reports: Track resource utilization, including coach availability and course attendance.
  • Financial Reports: Generate reports on revenue, outstanding payments, and financial performance.

Feedback and Survey Module

  • Student Feedback: Collect feedback from students on courses, coaches, and overall experience.
  • Surveys: Conduct surveys to assess coaching effectiveness and gather insights for future improvements.

Admin Dashboard Module

  • Dashboard Overview: Provide administrators with an overview of coaching activities, student progress, and financial metrics.
  • Management Tools: Allow admins to manage users, courses, assessments, and payments from a centralized dashboard.

Resource Management Module

  • Resource Allocation: Manage resources required for classes, such as classrooms, equipment, and materials.
  • Inventory Tracking: Track the availability and usage of teaching materials and resources.

Security and Access Control Module

  • Data Security: Ensure that sensitive user data and financial information are stored securely.
  • Access Control: Manage access to different modules and features based on user roles.

Project Tables Queries


-- Users Table
CREATE TABLE Users (
UserId INT PRIMARY KEY IDENTITY(1,1),
Username NVARCHAR(50) NOT NULL UNIQUE,
PasswordHash NVARCHAR(255) NOT NULL,
Email NVARCHAR(100) NOT NULL UNIQUE,
Phone NVARCHAR(15),
RoleId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (RoleId) REFERENCES Roles(RoleId)
);
-- Roles Table
CREATE TABLE Roles (
RoleId INT PRIMARY KEY IDENTITY(1,1),
RoleName NVARCHAR(50) NOT NULL UNIQUE
);
-- Courses Table
CREATE TABLE Courses (
CourseId INT PRIMARY KEY IDENTITY(1,1),
CourseName NVARCHAR(100) NOT NULL,
Description NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE()
);
-- Syllabus Table
CREATE TABLE Syllabuses (
SyllabusId INT PRIMARY KEY IDENTITY(1,1),
CourseId INT,
Topic NVARCHAR(255) NOT NULL,
Description NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Schedule Table
CREATE TABLE Schedules (
ScheduleId INT PRIMARY KEY IDENTITY(1,1),
CourseId INT,
StartDate DATETIME NOT NULL,
EndDate DATETIME NOT NULL,
Location NVARCHAR(100),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Enrollments Table
CREATE TABLE Enrollments (
EnrollmentId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
CourseId INT,
EnrollmentDate DATETIME DEFAULT GETDATE(),
Status NVARCHAR(20) DEFAULT 'Active', -- e.g., Active, Completed, Dropped
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Attendance Table
CREATE TABLE Attendance (
AttendanceId INT PRIMARY KEY IDENTITY(1,1),
EnrollmentId INT,
ScheduleId INT,
Attended BIT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (EnrollmentId) REFERENCES Enrollments(EnrollmentId),
FOREIGN KEY (ScheduleId) REFERENCES Schedules(ScheduleId)
);
-- Assessments Table
CREATE TABLE Assessments (
AssessmentId INT PRIMARY KEY IDENTITY(1,1),
CourseId INT,
AssessmentType NVARCHAR(50), -- e.g., Quiz, Exam
TotalMarks INT,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Payments Table
CREATE TABLE Payments (
PaymentId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
CourseId INT,
Amount DECIMAL(10, 2) NOT NULL,
PaymentDate DATETIME DEFAULT GETDATE(),
PaymentMethod NVARCHAR(50), -- e.g., Credit Card, Bank Transfer
Status NVARCHAR(20) DEFAULT 'Pending',
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Feedback Table
CREATE TABLE Feedbacks (
FeedbackId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
CourseId INT,
Comments NVARCHAR(MAX),
Rating INT CHECK (Rating >= 1 AND Rating <= 5),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Reports Table
CREATE TABLE Reports (
ReportId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
CourseId INT,
ReportDate DATETIME DEFAULT GETDATE(),
Description NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Resources Table
CREATE TABLE Resources (
ResourceId INT PRIMARY KEY IDENTITY(1,1),
CourseId INT,
ResourceType NVARCHAR(50), -- e.g., Book, Article, Video
ResourceUrl NVARCHAR(255) NOT NULL,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (CourseId) REFERENCES Courses(CourseId)
);
-- Notifications Table
CREATE TABLE Notifications (
NotificationId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Message NVARCHAR(MAX),
IsRead BIT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);

Explanation of Tables

Users: Stores user information, including credentials and roles.

Roles: Defines different roles within the system (e.g., admin, instructor, student).

Courses: Contains details about the courses offered, including descriptions and timestamps.

Syllabuses: Manages the syllabus for each course, detailing topics and descriptions.

Schedules: Tracks the scheduling of courses, including start and end dates and locations.

Enrollments: Records user enrollments in courses, along with their status.

Attendance: Monitors attendance for scheduled sessions linked to enrollments.

Assessments: Stores information about assessments related to courses, including types and total marks.

Payments: Manages payment records for courses, including amounts and payment methods.

Feedback: Collects feedback from users regarding courses, including ratings and comments.

Reports: Records reports generated by users regarding courses, including descriptions and timestamps.

Resources: Contains additional resources related to courses, such as articles and videos.

Notifications: Manages notifications sent to users, tracking whether they have been read.

To create the models and migrations for the provided MySQL schema in Laravel 11, you can follow these steps.

Step 1: Create Migrations

You can create migrations using the Artisan command. For example, to create a migration for the users table, you would run:


php artisan make:migration create_users_table

Repeat this for each table. Below are the migration files for each table based on your schema.

Migration for Users Table


// database/migrations/2025_02_01_000001_create_users_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id('user_id');
$table->string('username', 50)->unique();
$table->string('password_hash', 255);
$table->string('email', 100)->unique();
$table->string('phone', 15)->nullable();
$table->foreignId('role_id')->nullable()->constrained('roles');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}

Migration for Roles Table


// database/migrations/2025_02_01_000002_create_roles_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRolesTable extends Migration
{
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table->id('role_id');
$table->string('role_name', 50)->unique();
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}

Migration for Courses Table


// database/migrations/2025_02_01_000003_create_courses_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCoursesTable extends Migration
{
public function up()
{
Schema::create('courses', function (Blueprint $table) {
$table->id('course_id');
$table->string('course_name', 100);
$table->text('description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('courses');
}
}

Migration for Syllabuses Table


// database/migrations/2025_02_01_000004_create_syllabuses_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSyllabusesTable extends Migration
{
public function up()
{
Schema::create('syllabuses', function (Blueprint $table) {
$table->id('syllabus_id');
$table->foreignId('course_id')->constrained('courses');
$table->string('topic', 255);
$table->text('description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('syllabuses');
}
}

Migration for Schedules Table


// database/migrations/2025_02_01_000005_create_schedules_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSchedulesTable extends Migration
{
public function up()
{
Schema::create('schedules', function (Blueprint $table) {
$table->id('schedule_id');
$table->foreignId('course_id')->constrained('courses');
$table->dateTime('start_date');
$table->dateTime('end_date');
$table->string('location', 100)->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('schedules');
}
}

Migration for Enrollments Table


// database/migrations/2025_02_01_000006_create_enrollments_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateEnrollmentsTable extends Migration
{
public function up()
{
Schema::create('enrollments', function (Blueprint $table) {
$table->id('enrollment_id');
$table->foreignId('user_id')->constrained('users');
$table->foreignId('course_id')->constrained('courses');
$table->dateTime('enrollment_date')->default(now());
$table->string('status', 20)->default('Active');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('enrollments');
}
}

Migration for Attendance Table


// database/migrations/2025_02_01_000007_create_attendance_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAttendanceTable extends Migration
{
public function up()
{
Schema::create('attendance', function (Blueprint $table) {
$table->id('attendance_id');
$table->foreignId('enrollment_id')->constrained('enrollments');
$table->foreignId('schedule_id')->constrained('schedules');
$table->boolean('attended')->default(false);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('attendance');
}
}

Migration for Assessments Table


// database/migrations/2025_02_01_000008_create_assessments_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAssessmentsTable extends Migration
{
public function up()
{
Schema::create('assessments', function (Blueprint $table) {
$table->id('assessment_id');
$table->foreignId('course_id')->constrained('courses');
$table->string('assessment_type', 50);
$table->integer('total_marks');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('assessments');
}
}

Migration for Payments Table


// database/migrations/2025_02_01_000009_create_payments_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePaymentsTable extends Migration
{
public function up()
{
Schema::create('payments', function (Blueprint $table) {
$table->id('payment_id');
$table->foreignId('user_id')->constrained('users');
$table->foreignId('course_id')->constrained('courses');
$table->decimal('amount', 10, 2);
$table->dateTime('payment_date')->default(now());
$table->string('payment_method', 50);
$table->string('status', 20)->default('Pending');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('payments');
}
}

Migration for Feedback Table


// database/migrations/2025_02_01_000010_create_feedbacks_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFeedbacksTable extends Migration
{
public function up()
{
Schema::create('feedbacks', function (Blueprint $table) {
$table->id('feedback_id');
$table->foreignId('user_id')->constrained('users');
$table->foreignId('course_id')->constrained('courses');
$table->text('comments')->nullable();
$table->integer('rating')->check('rating >= 1 AND rating <= 5');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('feedbacks');
}
}

Migration for Reports Table


// database/migrations/2025_02_01_000011_create_reports_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateReportsTable extends Migration
{
public function up()
{
Schema::create('reports', function (Blueprint $table) {
$table->id('report_id');
$table->foreignId('user_id')->constrained('users');
$table->foreignId('course_id')->constrained('courses');
$table->dateTime('report_date')->default(now());
$table->text('description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('reports');
}
}

Migration for Resources Table


// database/migrations/2025_02_01_000012_create_resources_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateResourcesTable extends Migration
{
public function up()
{
Schema::create('resources', function (Blueprint $table) {
$table->id('resource_id');
$table->foreignId('course_id')->constrained('courses');
$table->string('resource_type', 50);
$table->string('resource_url', 255);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('resources');
}
}

Migration for Notifications Table


// database/migrations/2025_02_01_000013_create_notifications_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateNotificationsTable extends Migration
{
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->id('notification_id');
$table->foreignId('user_id')->constrained('users');
$table->text('message');
$table->boolean('is_read')->default(false);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('notifications');
}
}

Step 2: Create Models
You can create models using the Artisan command. For example, to create a model for the User , you would run:
php artisan make:model User
Repeat this for each table. Below are the Eloquent models for each table.

Step 2: Create Eloquent Models

For each table, create a corresponding Eloquent model. You can create models using the following commands:


// app/Models/User.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasFactory;
protected $table = 'users';
protected $primaryKey = 'user_id';
protected $fillable = ['username', 'password_hash', 'email', 'phone', 'role_id'];
}

User Model


// app/Models/Role.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
use HasFactory;
protected $table = 'roles';
protected $primaryKey = 'role_id';
protected $fillable = ['role_name'];
}

Role Model


// app/Models/Course.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Course extends Model
{
use HasFactory;
protected $table = 'courses';
protected $primaryKey = 'course_id';
protected $fillable = ['course_name', 'description'];
}

Course Model


// app/Models/Syllabus.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Syllabus extends Model
{
use HasFactory;
protected $table = 'syllabuses';
protected $primaryKey = 'syllabus_id';
protected $fillable = ['course_id', 'topic', 'description'];
}

Syllabus Model


// app/Models/Schedule.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Schedule extends Model
{
use HasFactory;
protected $table = 'schedules';
protected $primaryKey = 'schedule_id';
protected $fillable = ['course_id', 'start_date', 'end_date', 'location'];
}

Schedule Model


// app/Models/Enrollment.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Enrollment extends Model
{
use HasFactory;
protected $table = 'enrollments';
protected $primaryKey = 'enrollment_id';
protected $fillable = ['user_id', 'course_id', 'enrollment_date', 'status'];
}

Enrollment Model


// app/Models/Attendance.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Attendance extends Model
{
use HasFactory;
protected $table = 'attendance';
protected $primaryKey = 'attendance_id';
protected $fillable = ['enrollment_id', 'schedule_id', 'attended'];
}

Attendance Model


// app/Models/Assessment.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Assessment extends Model
{
use HasFactory;
protected $table = 'assessments';
protected $primaryKey = 'assessment_id';
protected $fillable = ['course_id', 'assessment_type', 'total_marks'];
}

Assessment Model


// app/Models/Payment.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Payment extends Model
{
use HasFactory;
protected $table = 'payments';
protected $primaryKey = 'payment_id';
protected $fillable = ['user_id', 'course_id', 'amount', 'payment_date', 'payment_method', 'status'];
}

Payment Model


// app/Models/Feedback.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Feedback extends Model
{
use HasFactory;
protected $table = 'feedbacks';
protected $primaryKey = 'feedback_id';
protected $fillable = ['user_id', 'course_id', 'comments', 'rating'];
}

Feedback Model


// app/Models/Report.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Report extends Model
{
use HasFactory;
protected $table = 'reports';
protected $primaryKey = 'report_id';
protected $fillable = ['user_id', 'course_id', 'report_date', 'description'];
}

Report Model


// app/Models/Resource.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Resource extends Model
{
use HasFactory;
protected $table = 'resources';
protected $primaryKey = 'resource_id';
protected $fillable = ['course_id', 'resource_type', 'resource_url'];
}

Resource Model


// app/Models/Notification.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
use HasFactory;
protected $table = 'notifications';
protected $primaryKey = 'notification_id';
protected $fillable = ['user_id', 'message', 'is_read'];
}

Step 3: Run Migrations

After creating the migration files, you can run the migrations to create the tables in your database. Use the following command:


php artisan migrate

Step 4: Define Relationships in Models

To establish relationships between the models, you can define the necessary methods in each model. Here are some examples:

User Model Relationships


public function role()
{
return $this->belongsTo(Role::class, 'role_id');
}
public function enrollments()
{
return $this->hasMany(Enrollment::class, 'user_id');
}
public function feedbacks()
{
return $this->hasMany(Feedback::class, 'user_id');
}
public function notifications()
{
return $this->hasMany(Notification::class, 'user_id');
}
Course Model Relationships
public function syllabus()
{
return $this->hasMany(Syllabus::class, 'course_id');
}
public function schedules()
{
return $this->hasMany(Schedule::class, 'course_id');
}
public function enrollments()
{
return $this->hasMany(Enrollment::class, 'course_id');
}
public function assessments()
{
return $this->hasMany(Assessment::class, 'course_id');
}
public function payments()
{
return $this->hasMany(Payment::class, 'course_id');
}
public function feedbacks()
{
return $this->hasMany(Feedback::class, 'course_id');
}
public function reports()
{
return $this->hasMany(Report::class, 'course_id');
}
public function resources()
{
return $this->hasMany(Resource::class, 'course_id');
}
Enrollment Model Relationships
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
public function course()
{
return $this->belongsTo(Course::class, 'course_id');
}
public function attendance()
{
return $this->hasMany(Attendance::class, 'enrollment_id');
}
Attendance Model Relationships
public function enrollment()
{
return $this->belongsTo(Enrollment::class, 'enrollment_id');
}
public function schedule()
{
return $this->belongsTo(Schedule::class, 'schedule_id');
}
Payment Model Relationships
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
public function course()
{
return $this->belongsTo(Course::class, 'course_id');
}

Step 5: Seed the Database (Optional)

If you want to populate your tables with some initial data, you can create seeders for each model. Use the following command to create a seeder:


php artisan make:seeder UsersTableSeeder

Then, you can define the data you want to insert in the run method of the seeder class. After creating all necessary seeders, run:


php artisan db:seed

To create controllers for each model with complete CRUD operations in Laravel, you can use the Artisan command to generate resource controllers.

Step 1: Create Controllers

You can create a resource controller for each model using the following command:


php artisan make:controller UserController --resource
php artisan make:controller RoleController --resource
php artisan make:controller CourseController --resource
php artisan make:controller SyllabusController --resource
php artisan make:controller ScheduleController --resource
php artisan make:controller EnrollmentController --resource
php artisan make:controller AttendanceController --resource
php artisan make:controller AssessmentController --resource
php artisan make:controller PaymentController --resource
php artisan make:controller FeedbackController --resource
php artisan make:controller ReportController --resource
php artisan make:controller ResourceController --resource
php artisan make:controller NotificationController --resource

Step 2: Implement CRUD Operations

Below are examples of how to implement the CRUD operations in each controller. For brevity, I will provide a complete example for the User Controller, and you can follow the same pattern for the other controllers.

UserController


// app/Http/Controllers/UserController.php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function index()
{
$users = User::all();
return view('users.index', compact('users'));
}
public function create()
{
return view('users.create');
}
public function store(Request $request)
{
$request->validate([
'username' => 'required|unique:users|max:50',
'password_hash' => 'required',
'email' => 'required|email|unique:users|max:100',
'phone' => 'nullable|max:15',
'role_id' => 'nullable|exists:roles,role_id',
]);
User::create($request->all());
return redirect()->route('users.index')->with('success', 'User created successfully.');
}
public function show(User $user)
{
return view('users.show', compact('user'));
}
public function edit(User $user)
{
return view('users.edit', compact('user'));
}
public function update(Request $request, User $user)
{
$request->validate([
'username' => 'required|max:50|unique:users,username,' . $user->user_id,
'password_hash' => 'required',
'email' => 'required|email|max:100|unique:users,email,' . $user->user_id,
'phone' => 'nullable|max:15',
'role_id' => 'nullable|exists:roles,role_id',
]);
$user->update($request->all());
return redirect()->route('users.index')->with('success', 'User updated successfully.');
}
public function destroy(User $user)
{
$user->delete();
return redirect()->route('users.index')->with('success', 'User deleted successfully.');
}
}

Step 3: Create Views

You will need to create views for each of the CRUD operations. Below is an example of how to create the views for the User model. You can create similar views for other models.

Create Views Directory

Create a directory for the user views:

mkdir resources/views/users

Create Index View


@extends('layouts.app')
@section('content')
<h1>Users</h1>
<a href="{{ route('users.create') }}">Create User</a>
<table>
<thead>
<tr>
<th>ID</th>
<th>Username</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr>
<td>{{ $user->user_id }}</td>
<td>{{ $user->username }}</td>
<td>{{ $user->email }}</td>
<td>
<a href="{{ route('users.show', $user) }}">View</a>
<a href="{{ route('users.edit', $user) }}">Edit</a>
<form action="{{ route('users.destroy', $user) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create Create View


@extends('layouts.app')
@section('content')
<h1>Create User</h1>
<form action="{{ route('users.store') }}" method="POST">
@csrf
<label for="username">Username:</label>
<input type="text" name="username" required>
<label for="password_hash">Password:</label>
<input type="password" name="password_hash" required>
<label for="email">Email:</label>
<input type="email" name="email" required>
<label for="phone">Phone:</label>
<input type="text" name="phone">
<label for="role_id">Role:</label>
<select name="role_id">
<!-- Populate roles here -->
</select>
<button type="submit">Create</button>
</form>
@endsection

Create Edit View


@extends('layouts.app')
@section('content')
<h1>Edit User</h1>
<form action="{{ route('users.update', $user) }}" method="POST">
@csrf
@method('PUT')
<label for="username">Username:</label>
<input type="text" name="username" value="{{ $user->username }}" required>
<label for="password_hash">Password:</label>
<input type="password" name="password_hash" value="{{ $user->password_hash }}" required>
<label for="email">Email:</label>
<input type="email" name="email" value="{{ $user->email }}" required>
<label for="phone">Phone:</label>
<input type="text" name="phone" value="{{ $user->phone }}">
<label for="role_id">Role:</label>
<select name="role_id">
<!-- Populate roles here -->
</select>
<button type="submit">Update</button>
</form>
@endsection

Create Show View


@extends('layouts.app')
@section('content')
<h1>User Details</h1>
<p>ID: {{ $user->user_id }}</p>
<p>Username: {{ $user->username }}</p>
<p>Email: {{ $user->email }}</p>
<p>Phone: {{ $user->phone }}</p>
<p>Role: {{ $user->role_id }}</p>
<a href="{{ route('users.edit', $user) }}">Edit</a>
<form action="{{ route('users.destroy', $user) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit">Delete</button>
</form>
<a href="{{ route('users.index') }}">Back to Users</a>
@endsection
Step 4: Define Routes
You need to define routes for the resource controllers in your web.php file. Add the following lines to your routes file:
// routes/web.php
use App\Http\Controllers\UserController;
use App\Http\Controllers\RoleController;
use App\Http\Controllers\CourseController;
use App\Http\Controllers\SyllabusController;
use App\Http\Controllers\ScheduleController;
use App\Http\Controllers\EnrollmentController;
use App\Http\Controllers\AttendanceController;
use App\Http\Controllers\AssessmentController;
use App\Http\Controllers\PaymentController;
use App\Http\Controllers\FeedbackController;
use App\Http\Controllers\ReportController;
use App\Http\Controllers\ResourceController;
use App\Http\Controllers\NotificationController;
Route::resource('users', UserController::class);
Route::resource('roles', RoleController::class);
Route::resource('courses', CourseController::class);
Route::resource('syllabuses', SyllabusController::class);
Route::resource('schedules', ScheduleController::class);
Route::resource('enrollments', EnrollmentController::class);
Route::resource('attendances', AttendanceController::class);
Route::resource('assessments', AssessmentController::class);
Route::resource('payments', PaymentController::class);
Route::resource('feedbacks', FeedbackController::class);
Route::resource('reports', ReportController::class);
Route::resource('resources', ResourceController::class);
Route::resource('notifications', NotificationController::class);
Conclusion
You now have a complete setup for CRUD operations for each model in your Laravel application. Each controller handles the basic CRUD functionality, and you have created views for displaying, creating, editing, and showing individual records. You can further customize the views and controllers as per your application's requirements.
Below are the Bootstrap 5 styled view files for all the controllers based on the models you provided earlier. Each model will have the following views: index, create, edit, and show.
1. User Views

Repeat for Other Models

Continue creating views for the other models (Roles, Courses, Syllabuses, Schedules, Enrollments, Attendance, Assessments, Payments, Feedback, Reports, Resources, Notifications) using a similar structure.

Example Views for Other Models

Roles

Index View


@extends('layouts.app')
@section(' content')
<h1 class="mb-4">Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($roles as $role)
<tr>
<td>{{ $role->id }}</td>
<td>{{ $role->name }}</td>
<td>
<a href="{{ route('roles.show', $role) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('roles.edit', $role) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('roles.destroy', $role) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Role</h1>
<form action="{{ route('roles.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="name" class="form-label">Role Name:</label>
<input type="text" name="name" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Role</h1>
<form action="{{ route('roles.update', $role) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="name" class="form-label">Role Name:</label>
<input type="text" name="name" class="form-control" value="{{ $role->name }}" required>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Role Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $role->id }}
</div>
<div class="mb-3">
<strong>Name:</strong> {{ $role->name }}
</div>
<a href="{{ route('roles.edit', $role) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('roles.destroy', $role) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back to Roles</a>
@endsection
3. Course Views

Courses

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Courses</h1>
<a href="{{ route('courses.create') }}" class="btn btn-primary mb-3">Create Course</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($courses as $course)
<tr>
<td>{{ $course->id }}</td>
<td>{{ $course->title }}</td>
<td>
<a href="{{ route('courses.show', $course) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('courses.edit', $course) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('courses.destroy', $course) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Course</h1>
<form action="{{ route('courses.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="title" class="form-label">Course Title:</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('courses.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Course</h1>
<form action="{{ route('courses.update', $course) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Course Title:</label>
<input type="text" name="title" class="form-control" value="{{ $course->title }}" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required>{{ $course->description }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('courses.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Course Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $course->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $course->title }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $course->description }}
</div>
<a href="{{ route('courses.edit', $course) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('courses.destroy', $course) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('courses.index') }}" class="btn btn-secondary">Back to Courses</a>
@endsection
4. Syllabus Views

Syllabuses

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Syllabuses</h1>
<a href="{{ route('syllabuses.create') }}" class="btn btn-primary mb-3">Create Syllabus</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($syllabuses as $syllabus)
<tr>
<td>{{ $syllabus->id }}</td>
<td>{{ $syllabus->title }}</td>
<td>
<a href="{{ route('syllabuses.show', $syllabus) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('syllabuses.edit', $syllabus) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('syllabuses.destroy', $syllabus) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Syllabus</h1>
<form action="{{ route('syllabuses.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="title" class="form-label">Syllabus Title:</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('syllabuses.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Syllabus</h1>
<form action="{{ route('syllabuses.update', $syllabus) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Syllabus Title:</label>
<input type="text" name="title" class="form-control" value="{{ $syllabus->title }}" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required>{{ $syllabus->description }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('syllabuses.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Syllabus Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $syllabus->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $syllabus->title }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $syllabus->description }}
</div>
<a href="{{ route('syllabuses.edit', $syllabus) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('syllabuses.destroy', $syllabus) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('syllabuses.index') }}" class="btn btn-secondary">Back to Syllabuses</a>
@endsection
5. Schedule Views

Schedules

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Schedules</h1>
<a href="{{ route('schedules.create') }}" class="btn btn-primary mb-3">Create Schedule</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($schedules as $schedule)
<tr>
<td>{{ $schedule->id }}</td>
<td>{{ $schedule->title }}</td>
<td>
<a href="{{ route('schedules.show', $schedule) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('schedules.edit', $schedule) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('schedules.destroy', $schedule) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content') <h1 class="mb-4">Create Schedule</h1> <form action="{{ route('schedules.store') }}" method="POST"> @csrf <div class="mb-3"> <label for="title" class="form-label">Schedule Title:</label> <input type="text" name="title" class="form-control" required> </div> <div class="mb-3"> <label for="date" class="form-label">Date:</label> <input type="date" name="date" class="form-control" required> </div> <button type="submit" class="btn btn-primary">Create</button> <a href="{{ route('schedules.index') }}" class="btn btn-secondary">Back</a> </form> @endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Schedule</h1>
<form action="{{ route('schedules.update', $schedule) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Schedule Title:</label>
<input type="text" name="title" class="form-control" value="{{ $schedule->title }}" required>
</div>
<div class="mb-3">
<label for="date" class="form-label">Date:</label>
<input type="date" name="date" class="form-control" value="{{ $schedule->date }}" required>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('schedules.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Schedule Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $schedule->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $schedule->title }}
</div>
<div class="mb-3">
<strong>Date:</strong> {{ $schedule->date }}
</div>
<a href="{{ route('schedules.edit', $schedule) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('schedules.destroy', $schedule) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('schedules.index') }}" class="btn btn-secondary">Back to Schedules</a>
@endsection
6. Enrollment Views

Enrollments

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Enrollments</h1>
<a href="{{ route('enrollments.create') }}" class="btn btn-primary mb-3">Create Enrollment</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>User ID</th>
<th>Course ID</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($enrollments as $enrollment)
<tr>
<td>{{ $enrollment->id }}</td>
<td>{{ $enrollment->user_id }}</td>
<td>{{ $enrollment->course_id }}</td>
<td>
<a href="{{ route('enrollments.show', $enrollment) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('enrollments.edit', $enrollment) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('enrollments.destroy', $enrollment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h 1 class="mb-4">Create Enrollment</h1>
<form action="{{ route('enrollments.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" required>
</div>
<div class="mb-3">
<label for="course_id" class="form-label">Course ID:</label>
<input type="text" name="course_id" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('enrollments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Enrollment</h1>
<form action="{{ route('enrollments.update', $enrollment) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" value="{{ $enrollment->user_id }}" required>
</div>
<div class="mb-3">
<label for="course_id" class="form-label">Course ID:</label>
<input type="text" name="course_id" class="form-control" value="{{ $enrollment->course_id }}" required>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('enrollments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Enrollment Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $enrollment->id }}
</div>
<div class="mb-3">
<strong>User ID:</strong> {{ $enrollment->user_id }}
</div>
<div class="mb-3">
<strong>Course ID:</strong> {{ $enrollment->course_id }}
</div>
<a href="{{ route('enrollments.edit', $enrollment) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('enrollments.destroy', $enrollment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('enrollments.index') }}" class="btn btn-secondary">Back to Enrollments</a>
@endsection

Attendance

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Attendance Records</h1>
<a href="{{ route('attendances.create') }}" class="btn btn-primary mb-3">Create Attendance</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>User ID</th>
<th>Course ID</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($attendances as $attendance)
<tr>
<td>{{ $attendance->id }}</td>
<td>{{ $attendance->user_id }}</td>
<td>{{ $attendance->course_id }}</td>
<td>{{ $attendance->date }}</td>
<td>
<a href="{{ route('attendances.show', $attendance) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('attendances.edit', $attendance) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('attendances.destroy', $attendance) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Attendance Record</h1>
<form action="{{ route('attendances.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" required>
</div>
<div class="mb-3">
<label for="course_id" class="form-label">Course ID:</label>
<input type="text" name="course_id" class="form-control" required>
</div>
<div class="mb-3">
<label for="date" class="form-label">Date:</label>
<input type="date" name="date" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('attendances.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Attendance Record</h1>
<form action="{{ route('attendances.update', $attendance) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" value="{{ $attendance->user_id }}" required>
</div>
<div class="mb-3">
<label for="course_id" class="form-label">Course ID:</label>
<input type="text" name="course_id" class="form-control" value="{{ $attendance->course_id }}" required>
</div>
<div class="mb-3">
<label for="date" class="form-label">Date:</label>
<input type="date" name="date" class="form-control" value="{{ $attendance->date }}" required>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('attendances.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Attendance Record Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $attendance->id }}
</div>
<div class="mb-3">
<strong>User ID:</strong> {{ $attendance->user_id }}
</div>
<div class="mb-3">
<strong>Course ID:</strong> {{ $attendance->course_id }}
</div>
<div class="mb-3">
<strong>Date:</strong> {{ $attendance->date }}
</div>
<a href="{{ route('attendances.edit', $attendance) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('attendances.destroy', $attendance) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('attendances.index') }}" class="btn btn-secondary">Back to Attendance Records</a>
@endsection

Assessments

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Assessments</h1>
<a href="{{ route('assessments.create') }}" class="btn btn-primary mb-3">Create Assessment</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($assessments as $assessment)
<tr>
<td>{{ $assessment->id }}</td>
<td>{{ $assessment->title }}</td>
<td>
<a href="{{ route('assessments.show', $assessment) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('assessments.edit ', $assessment) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('assessments.destroy', $assessment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Assessment</h1>
<form action="{{ route('assessments.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="title" class="form-label">Assessment Title:</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('assessments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Assessment</h1>
<form action="{{ route('assessments.update', $assessment) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Assessment Title:</label>
<input type="text" name="title" class="form-control" value="{{ $assessment->title }}" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required>{{ $assessment->description }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('assessments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Assessment Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $assessment->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $assessment->title }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $assessment->description }}
</div>
<a href="{{ route('assessments.edit', $assessment) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('assessments.destroy', $assessment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('assessments.index') }}" class="btn btn-secondary">Back to Assessments</a>
@endsection

Payments

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Payments</h1>
<a href="{{ route('payments.create') }}" class="btn btn-primary mb-3">Create Payment</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>User ID</th>
<th>Amount</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($payments as $payment)
<tr>
<td>{{ $payment->id }}</td>
<td>{{ $payment->user_id }}</td>
<td>{{ $payment->amount }}</td>
<td>{{ $payment->date }}</td>
<td>
<a href="{{ route('payments.show', $payment) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('payments.edit', $payment) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('payments.destroy', $payment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Payment</h1>
<form action="{{ route('payments.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" required>
</div>
<div class="mb-3">
<label for="amount" class="form-label">Amount:</label>
<input type="number" name="amount" class="form-control" required>
</div>
<div class="mb-3">
<label for="date" class="form-label">Date:</label>
<input type="date" name="date" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('payments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Payment</h1>
<form action="{{ route('payments.update', $payment) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" value="{{ $payment->user_id }}" required>
</div>
<div class="mb-3">
<label for="amount" class="form-label">Amount:</label>
<input type="number" name="amount" class="form-control" value="{{ $payment->amount }}" required>
</div>
<div class="mb-3">
<label for="date" class="form-label">Date:</label>
<input type="date" name="date" class="form-control" value="{{ $payment->date }}" required>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('payments.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Payment Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $payment->id }}
</div>
<div class="mb-3">
<strong>User ID:</strong> {{ $payment->user_id }}
</div>
<div class="mb-3">
<strong>Amount:</strong> {{ $payment->amount }}
</div>
<div class="mb-3">
<strong>Date:</strong> {{ $payment->date }}
</div>
<a href="{{ route('payments.edit', $payment) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('payments.destroy', $payment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('payments.index') }}" class="btn btn-secondary">Back to Payments</a>
@endsection

Feedback

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Feedbacks</h1>
<a href="{{ route('feedbacks.create') }}" class="btn btn-primary mb-3">Create Feedback</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>User ID</th>
<th>Content</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($feedbacks as $feedback)
<tr>
<td>{{ $feedback->id }}</td <td>{{ $feedback->user_id }}</td>
<td>{{ $feedback->content }}</td>
<td>
<a href="{{ route('feedbacks.show', $feedback) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('feedbacks.edit', $feedback) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('feedbacks.destroy', $feedback) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Feedback</h1>
<form action="{{ route('feedbacks.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" required>
</div>
<div class="mb-3">
<label for="content" class="form-label">Content:</label>
<textarea name="content" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Feedback</h1>
<form action="{{ route('feedbacks.update', $feedback) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User ID:</label>
<input type="text" name="user_id" class="form-control" value="{{ $feedback->user_id }}" required>
</div>
<div class="mb-3">
<label for="content" class="form-label">Content:</label>
<textarea name="content" class="form-control" required>{{ $feedback->content }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Feedback Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $feedback->id }}
</div>
<div class="mb-3">
<strong>User ID:</strong> {{ $feedback->user_id }}
</div>
<div class="mb-3">
<strong>Content:</strong> {{ $feedback->content }}
</div>
<a href="{{ route('feedbacks.edit', $feedback) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('feedbacks.destroy', $feedback) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back to Feedbacks</a>
@endsection

Reports

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Reports</h1>
<a href="{{ route('reports.create') }}" class="btn btn-primary mb-3">Create Report</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($reports as $report)
<tr>
<td>{{ $report->id }}</td>
<td>{{ $report->title }}</td>
<td>
<a href="{{ route('reports.show', $report) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route(' reports.edit', $report) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('reports.destroy', $report) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Report</h1>
<form action="{{ route('reports.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="title" class="form-label">Report Title:</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label for="content" class="form-label">Content:</label>
<textarea name="content" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Report</h1>
<form action="{{ route('reports.update', $report) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Report Title:</label>
<input type="text" name="title" class="form-control" value="{{ $report->title }}" required>
</div>
<div class="mb-3">
<label for="content" class="form-label">Content:</label>
<textarea name="content" class="form-control" required>{{ $report->content }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Report Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $report->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $report->title }}
</div>
<div class="mb-3">
<strong>Content:</strong> {{ $report->content }}
</div>
<a href="{{ route('reports.edit', $report) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('reports.destroy', $report) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back to Reports</a>
@endsection

Resources

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Resources</h1>
<a href="{{ route('resources.create') }}" class="btn btn-primary mb-3">Create Resource</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($resources as $resource)
<tr>
<td>{{ $resource->id }}</td>
<td>{{ $resource->title }}</td>
<td>
<a href="{{ route('resources.show', $resource) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('resources.edit', $resource) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('resources.destroy', $resource) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Resource</h1>
<form action="{{ route('resources.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="title" class="form-label">Resource Title:</label>
<input type="text" name="title" class="form-control" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('resources.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Resource</h1>
<form action="{{ route('resources.update', $resource) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="title" class="form-label">Resource Title:</label>
<input type="text" name="title" class="form-control" value="{{ $resource->title }}" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description:</label>
<textarea name="description" class="form-control" required>{{ $resource->description }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('resources.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Resource Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $resource->id }}
</div>
<div class="mb-3">
<strong>Title:</strong> {{ $resource->title }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $resource->description }}
</div>
<a href="{{ route('resources.edit', $resource) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('resources.destroy', $resource) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('resources.index') }}" class="btn btn-secondary">Back to Resources</a>
@endsection
13. Notification Views

Notifications

Index View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Notifications</h1>
<a href="{{ route('notifications.create') }}" class="btn btn-primary mb-3">Create Notification</a>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Message</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($notifications as $notification)
<tr>
<td>{{ $notification->id }}</td>
<td>{{ $notification->message }}</td>
<td>
<a href="{{ route('notifications.show', $notification) }}" class="btn btn-info btn-sm">View</a>
<a href="{{ route('notifications.edit', $notification) }}" class="btn btn-warning btn-sm">Edit</a>
<form action="{{ route('notifications.destroy', $notification) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Create View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Create Notification</h1>
<form action="{{ route('notifications.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="message" class="form-label">Message:</label>
<textarea name="message" class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Create</button>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Edit View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Edit Notification</h1>
<form action="{{ route('notifications.update', $notification) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="message" class="form-label">Message:</label>
<textarea name="message" class="form-control" required>{{ $notification->message }}</textarea>
</div>
<button type="submit" class="btn btn-warning">Update</button>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back</a>
</form>
@endsection

Show View


@extends('layouts.app')
@section('content')
<h1 class="mb-4">Notification Details</h1>
<div class="mb-3">
<strong>ID:</strong> {{ $notification->id }}
</div>
<div class="mb-3">
<strong>Message:</strong> {{ $notification->message }}
</div>
<a href="{{ route('notifications.edit', $notification) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('notifications.destroy', $notification) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back to Notifications</a>
@endsection

To create a dashboard page in your Laravel application that displays consolidated data related to your project, you will follow these steps:

Step 1: Set Up the Route

In your routes/web.php file, add a route for the dashboard:


use App\Http\Controllers\DashboardController;
Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard');
Step 2: Create the Dashboard Controller
Generate a controller using the Artisan command:
php artisan make:controller DashboardController
In the DashboardController, fetch the necessary data:
// app/Http/Controllers/DashboardController.php
namespace App\Http\Controllers;
use App\Models\User;
use App\Models\Role;
use App\Models\Course;
use App\Models\Syllabus;
use App\Models\Schedule;
use App\Models\Enrollment;
use App\Models\Attendance;
use App\Models\Assessment;
use App\Models\Payment;
use App\Models\Feedback;
use App\Models\Report;
use App\Models\Resource;
use App\Models\Notification;
use Illuminate\Http\Request;
class DashboardController extends Controller
{
public function index()
{
$userCount = User::count();
$roleCount = Role::count();
$courseCount = Course::count();
$syllabusCount = Syllabus::count();
$scheduleCount = Schedule::count();
$enrollmentCount = Enrollment::count();
$attendanceCount = Attendance::count();
$assessmentCount = Assessment::count();
$paymentCount = Payment::count();
$feedbackCount = Feedback::count();
$reportCount = Report::count();
$resourceCount = Resource::count();
$notificationCount = Notification::count();
return view('dashboard.index', compact(
'userCount', 'roleCount', 'courseCount', 'syllabusCount',
'scheduleCount', 'enrollmentCount', 'attendanceCount',
'assessmentCount', 'paymentCount', 'feedbackCount',
'reportCount', 'resourceCount', 'notificationCount'
));
}
}

Step 2: Create the Dashboard Controller

Generate a controller that will handle the logic for fetching and consolidating project data.

Step 3: Fetch Data

In the controller, retrieve the necessary data from your models.

Step 4: Create the Dashboard View

Create a Blade view file at resources/views/dashboard/index.blade.php:


@extends('layouts.app')
@section('content')
<div class="container">
<h1 class="mb-4">Dashboard</h1>

<div class="row">
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Users</div>
<div class="card-body">
<h5 class="card-title">{{ $userCount }}</h5>
<p class="card-text">Total Users</p>
<a href="{{ route('users.index') }}" class="btn btn-primary">View Users</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Roles</div>
<div class="card-body">
<h5 class="card-title">{{ $roleCount }}</h5>
<p class="card-text">Total Roles</p>
<a href="{{ route('roles.index') }}" class="btn btn-primary">View Roles</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Courses</div>
<div class="card-body">
<h5 class="card-title">{{ $courseCount }}</h5>
<p class="card-text">Total Courses</p>
<a href="{{ route('courses.index') }}" class="btn btn-primary">View Courses</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Syllabuses</div>
<div class="card-body">
<h5 class="card-title">{{ $syllabusCount }}</h5>
<p class="card-text">Total Syllabuses</p>
<a href="{{ route('syllabuses.index') }}" class="btn btn-primary">View Syllabuses</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Schedules</div>
<div class="card-body">
<h5 class="card-title">{{ $scheduleCount }}</h5>
<p class="card-text">Total Schedules</p>
<a href="{{ route('schedules.index') }}" class="btn btn-primary">View Schedules</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Enrollments</div>
<div class="card-body">
<h5 class="card-title">{{ $enrollmentCount }}</h5>
<p class="card-text">Total Enrollments</p>
<a href="{{ route('enrollments.index') }}" class="btn btn-primary">View Enrollments</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Attendance</div>
<div class="card-body">
<h5 class="card-title">{{ $attendanceCount }}</h5>
<p class="card-text">Total Attendance Records</p>
<a href="{{ route('attendances.index') }}" class="btn btn-primary">View Attendance</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header"> Assessments</div>
<div class="card-body">
<h5 class="card-title">{{ $assessmentCount }}</h5>
<p class="card-text">Total Assessments</p>
<a href="{{ route('assessments.index') }}" class="btn btn-primary">View Assessments</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Payments</div>
<div class="card-body">
<h5 class="card-title">{{ $paymentCount }}</h5>
<p class="card-text">Total Payments</p>
<a href="{{ route('payments.index') }}" class="btn btn-primary">View Payments</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Feedbacks</div>
<div class="card-body">
<h5 class="card-title">{{ $feedbackCount }}</h5>
<p class="card-text">Total Feedbacks</p>
<a href="{{ route('feedbacks.index') }}" class="btn btn-primary">View Feedbacks</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Reports</div>
<div class="card-body">
<h5 class="card-title">{{ $reportCount }}</h5>
<p class="card-text">Total Reports</p>
<a href="{{ route('reports.index') }}" class="btn btn-primary">View Reports</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Resources</div>
<div class="card-body">
<h5 class="card-title">{{ $resourceCount }}</h5>
<p class="card-text">Total Resources</p>
<a href="{{ route('resources.index') }}" class="btn btn-primary">View Resources</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card mb-4">
<div class="card-header">Notifications</div>
<div class="card-body">
<h5 class="card-title">{{ $notificationCount }}</h5>
<p class="card-text">Total Notifications</p>
<a href="{{ route('notifications.index') }}" class="btn btn-primary">View Notifications</a>
</div>
</div>
</div>
</div>
</div>
@endsection

Summary

The above implementation creates a dashboard page that consolidates data related to your project. It includes a route, a controller to fetch the data, and a view to display the data in a visually appealing manner using Bootstrap 5. Each card on the dashboard provides a summary of different aspects of the project, allowing users to quickly access detailed views of each section. You can further enhance the dashboard by adding charts or graphs for better data visualization if needed.