Project Introduction

The Online Voting System is a secure web-based application designed to facilitate the voting process for elections, polls, and surveys. This system aims to provide a transparent, efficient, and user-friendly platform for voters to cast their votes from anywhere, ensuring greater participation and accessibility. With the increasing need for modernized voting solutions, the Online Voting System addresses these challenges by offering a reliable and streamlined approach to the electoral process.

The platform features secure voter registration, real-time ballot casting, and verification processes to ensure the integrity of the voting system. Users can easily navigate through the voting options, view candidate information, and submit their votes with confidence. Additionally, the system includes administrative tools for managing elections, tracking voter participation, and generating results. By automating the voting process, the Online Voting System aims to enhance the democratic experience and ensure that every vote counts.

Project Objectives

  • To develop an intuitive interface for voters to register and cast their votes easily.
  • To implement secure authentication and verification processes to protect voter identities.
  • To provide real-time ballot casting and tracking to ensure transparency in the voting process.
  • To enable administrators to manage elections, including candidate listings and voting periods.
  • To facilitate the generation of results and reports on voter participation and election outcomes.
  • To ensure data security and privacy for all voter information and voting records.
  • To enhance user engagement through features like candidate profiles and election updates.
  • To support mobile responsiveness for access on various devices during the voting process.

Project Modules

User Management Module

  • User Registration/Login: Allow voters to create accounts and log in securely, often with multi-factor authentication.
  • Role Management: Differentiate between user roles (e.g., voter, admin, election officer) with varying permissions.
  • Profile Management: Enable users to manage their profiles, including personal information and voting eligibility.

Voter Verification Module

  • Identity Verification: Implement processes for verifying voter identities, such as using government-issued IDs or biometric data.
  • Eligibility Check: Ensure that only eligible voters can participate in the election based on predefined criteria.

Election Management Module

  • Election Setup: Allow administrators to create and manage elections, including defining election dates, types, and voting methods.
  • Candidate Management: Enable the addition and management of candidates or options for each election.
  • Ballot Design: Provide tools for designing electronic ballots, including layout and question types.

Voting Process Module

  • Ballot Access: Allow voters to access their ballots securely during the voting period.
  • Voting Interface: Provide an intuitive interface for voters to cast their votes, including options for selecting candidates or answering questions.
  • Confirmation of Vote: Allow voters to review and confirm their selections before submitting their votes.

Vote Casting and Submission Module

  • Secure Vote Submission: Ensure that votes are submitted securely and are tamper-proof.
  • Anonymous Voting: Maintain voter anonymity while ensuring that each vote is counted accurately.

Vote Counting and Results Module

  • Automated Vote Counting: Implement algorithms to automatically count votes and generate results.
  • Real-Time Results: Provide real-time updates on voting results as they are counted.
  • Result Verification: Allow for independent verification of results to ensure transparency.

Reporting and Analytics Module

  • Election Reports: Generate reports on voter turnout, demographics, and voting patterns.
  • Audit Trails: Maintain logs of all voting activities for auditing and transparency purposes.

Security and Access Control Module

  • Data Encryption: Ensure that all data, including voter information and votes, is encrypted to protect against unauthorized access.
  • Access Control: Manage access to different modules and features based on user roles.
  • Fraud Detection: Implement measures to detect and prevent fraudulent activities, such as multiple voting.

Notification System

  • Email/SMS Notifications: Send notifications to voters about election dates, reminders, and confirmation of votes.
  • In-app Notifications: Provide real-time notifications within the platform for important updates.

Feedback and Support Module

  • Help Center: Provide FAQs and support documentation for common issues related to voting.
  • Support Tickets: Allow users to submit support requests or inquiries regarding the voting process.

Project Tables Queries


-- Create Users Table
CREATE TABLE Users (
UserId INT PRIMARY KEY IDENTITY(1,1),
Username NVARCHAR(50) NOT NULL UNIQUE,
PasswordHash NVARCHAR(256) NOT NULL,
Email NVARCHAR(100) NOT NULL UNIQUE,
RoleId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (RoleId) REFERENCES Roles(RoleId)
);
-- Create Roles Table
CREATE TABLE Roles (
RoleId INT PRIMARY KEY IDENTITY(1,1),
RoleName NVARCHAR(50) NOT NULL UNIQUE
);
-- Create Elections Table
CREATE TABLE Elections (
ElectionId INT PRIMARY KEY IDENTITY(1,1),
Title NVARCHAR(100) NOT NULL,
Description NVARCHAR(MAX),
StartDate DATETIME NOT NULL,
EndDate DATETIME NOT NULL,
CreatedAt DATETIME DEFAULT GETDATE()
);
-- Create Candidates Table
CREATE TABLE Candidates (
CandidateId INT PRIMARY KEY IDENTITY(1,1),
ElectionId INT,
Name NVARCHAR(100) NOT NULL,
Party NVARCHAR(100),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (ElectionId) REFERENCES Elections(ElectionId)
);
-- Create Ballots Table
CREATE TABLE Ballots (
BallotId INT PRIMARY KEY IDENTITY(1,1),
ElectionId INT,
VoterId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (ElectionId) REFERENCES Elections(ElectionId),
FOREIGN KEY (VoterId) REFERENCES Users(UserId)
);
-- Create Votes Table
CREATE TABLE Votes (
VoteId INT PRIMARY KEY IDENTITY(1,1),
BallotId INT,
CandidateId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (BallotId) REFERENCES Ballots(BallotId),
FOREIGN KEY (CandidateId) REFERENCES Candidates(CandidateId)
);
-- Create Results Table
CREATE TABLE Results (
ResultId INT PRIMARY KEY IDENTITY(1,1),
ElectionId INT,
CandidateId INT,
VoteCount INT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (ElectionId) REFERENCES Elections(ElectionId),
FOREIGN KEY (CandidateId) REFERENCES Candidates(CandidateId)
);
-- Create Notifications Table
CREATE TABLE Notifications (
NotificationId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Message NVARCHAR(256) NOT NULL,
IsRead BIT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Create SupportTickets Table
CREATE TABLE SupportTickets (
SupportTicketId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
Subject NVARCHAR(100) NOT NULL,
Message NVARCHAR(MAX) NOT NULL,
Status NVARCHAR(50) NOT NULL, -- e.g., Open, Resolved
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Create Feedback Table
CREATE TABLE Feedback (
FeedbackId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Comments NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);

Explanation of the Tables

Users: Stores user information, including username, password hash, email, and role.

Roles: Defines user roles (e.g., Admin, Voter).

Elections: Contains election details, including title, description, start and end dates.

Candidates: Stores candidates participating in elections, including their names and associated elections.

Ballots: Tracks ballots cast in elections, linking voters to the elections they participate in.

Votes: Records votes for candidates associated with specific ballots.

Results: Stores the results of elections, including vote counts for each candidate.

Notifications: Manages notifications for users, such as alerts for upcoming elections or results.

SupportTickets: Manages support tickets raised by users, including subject, message, and status.

Feedback: Stores feedback from users regarding the platform or services.

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

Below, I will provide the migration files and the corresponding Eloquent models for each table.

Step 1: Create Migrations

You can create migrations using the Artisan command line tool. For each table, you will create a migration file. Here's how you can do it:


php artisan make:migration create_users_table
php artisan make:migration create_roles_table
php artisan make:migration create_elections_table
php artisan make:migration create_candidates_table
php artisan make:migration create_ballots_table
php artisan make:migration create_votes_table
php artisan make:migration create_results_table
php artisan make:migration create_notifications_table
php artisan make:migration create_support_tickets_table
php artisan make:migration create_feedback_table

Step 2: Define Migrations

Now, you can define the migrations in the generated files located in the database/migrations directory. Below are the migration definitions based on your SQL schema.

Migration for Users Table


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('PasswordHash', 256);
$table->string('Email', 100)->unique();
$table->foreignId('RoleId')->nullable()->constrained('roles', 'RoleId');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}

Migration for Roles Table


class CreateRolesTable extends Migration
{
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table->id('RoleId');
$table->string('RoleName', 50)->unique();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}

Migration for Elections Table


class CreateElectionsTable extends Migration
{
public function up()
{
Schema::create('elections', function (Blueprint $table) {
$table->id('ElectionId');
$table->string('Title', 100);
$table->text('Description')->nullable();
$table->dateTime('StartDate');
$table->dateTime('EndDate');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('elections');
}
}

Migration for Candidates Table


class CreateCandidatesTable extends Migration
{
public function up()
{
Schema::create('candidates', function (Blueprint $table) {
$table->id('CandidateId');
$table->foreignId('ElectionId')->constrained('elections', 'ElectionId');
$table->string('Name', 100);
$table->string('Party', 100)->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('candidates');
}
}

Migration for Ballots Table


class CreateBallotsTable extends Migration
{
public function up()
{
Schema::create('ballots', function (Blueprint $table) {
$table->id('BallotId');
$table->foreignId('ElectionId')->constrained('elections', 'ElectionId');
$table->foreignId('VoterId')->constrained('users', 'User Id');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('ballots');
}
}

Migration for Votes Table


class CreateVotesTable extends Migration
{
public function up()
{
Schema::create('votes', function (Blueprint $table) {
$table->id('VoteId');
$table->foreignId('BallotId')->constrained('ballots', 'BallotId');
$table->foreignId('CandidateId')->constrained('candidates', 'CandidateId');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('votes');
}
}

Migration for Results Table


class CreateResultsTable extends Migration
{
public function up()
{
Schema::create('results', function (Blueprint $table) {
$table->id('ResultId');
$table->foreignId('ElectionId')->constrained('elections', 'ElectionId');
$table->foreignId('CandidateId')->constrained('candidates', 'CandidateId');
$table->integer('VoteCount')->default(0);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('results');
}
}

Migration for Notifications Table


class CreateNotificationsTable extends Migration
{
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->id('NotificationId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->string('Message', 256);
$table->boolean('IsRead')->default(0);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('notifications');
}
}

Migration for SupportTickets Table


class CreateSupportTicketsTable extends Migration
{
public function up()
{
Schema::create('support_tickets', function (Blueprint $table) {
$table->id('SupportTicketId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->string('Subject', 100);
$table->text('Message');
$table->string('Status', 50);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('support_tickets');
}
}

Migration for Feedback Table


class CreateFeedbackTable extends Migration
{
public function up()
{
Schema::create('feedback', function (Blueprint $table) {
$table->id('FeedbackId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->text('Comments')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('feedback');
}
}

Step 3: Create Eloquent Models

After defining the migrations, you can create Eloquent models for each table. Use the following commands:


php artisan make:model User
php artisan make:model Role
php artisan make:model Election
php artisan make:model Candidate
php artisan make:model Ballot
php artisan make:model Vote
php artisan make:model Result
php artisan make:model Notification
php artisan make:model SupportTicket
php artisan make:model Feedback.

Step 4: Define Eloquent Models

Here are the basic model definitions for each table:

User Model


namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasFactory;
protected $table = 'users';
protected $fillable = [
'Username',
'PasswordHash',
'Email',
'RoleId',
];
public function role()
{
return $this->belongsTo(Role::class, 'RoleId');
}
public function ballots()
{
return $this->hasMany(Ballot::class, 'VoterId');
}
public function notifications()
{
return $this->hasMany(Notification::class, 'User Id');
}
public function supportTickets()
{
return $this->hasMany(SupportTicket::class, 'User Id');
}
public function feedbacks()
{
return $this->hasMany(Feedback::class, 'User Id');
}
}

Role Model


class Role extends Model
{
use HasFactory;
protected $table = 'roles';
protected $fillable = [
'RoleName',
];
public function users()
{
return $this->hasMany(User::class, 'RoleId');
}
}

Election Model


class Election extends Model
{
use HasFactory;
protected $table = 'elections';
protected $fillable = [
'Title',
'Description',
'StartDate',
'EndDate',
];
public function candidates()
{
return $this->hasMany(Candidate::class, 'ElectionId');
}
public function ballots()
{
return $this->hasMany(Ballot::class, 'ElectionId');
}
public function results()
{
return $this->hasMany(Result::class, 'ElectionId');
}
}

Candidate Model


class Candidate extends Model
{
use HasFactory;
protected $table = 'candidates';
protected $fillable = [
'ElectionId',
'Name',
'Party',
];
public function election()
{
return $this->belongsTo(Election::class, 'ElectionId');
}
public function votes()
{
return $ this->hasMany(Vote::class, 'CandidateId');
}
public function results()
{
return $this->hasMany(Result::class, 'CandidateId');
}
}

Ballot Model


class Ballot extends Model
{
use HasFactory;
protected $table = 'ballots';
protected $fillable = [
'ElectionId',
'VoterId',
];
public function election()
{
return $this->belongsTo(Election::class, 'ElectionId');
}
public function voter()
{
return $this->belongsTo(User::class, 'VoterId');
}
public function votes()
{
return $this->hasMany(Vote::class, 'BallotId');
}
}

Vote Model


class Vote extends Model
{
use HasFactory;
protected $table = 'votes';
protected $fillable = [
'BallotId',
'CandidateId',
];
public function ballot()
{
return $this->belongsTo(Ballot::class, 'BallotId');
}
public function candidate()
{
return $this->belongsTo(Candidate::class, 'CandidateId');
}
}

Result Model


class Result extends Model
{
use HasFactory;
protected $table = 'results';
protected $fillable = [
'ElectionId',
'CandidateId',
'VoteCount',
];
public function election()
{
return $this->belongsTo(Election::class, 'ElectionId');
}
public function candidate()
{
return $this->belongsTo(Candidate::class, 'CandidateId');
}
}

Notification Model


class Notification extends Model
{
use HasFactory;
protected $table = 'notifications';
protected $fillable = [
'User Id',
'Message',
'IsRead',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

SupportTicket Model


class SupportTicket extends Model
{
use HasFactory;
protected $table = 'support_tickets';
protected $fillable = [
'User Id',
'Subject',
'Message',
'Status',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Feedback Model


class Feedback extends Model
{
use HasFactory;
protected $table = 'feedback';
protected $fillable = [
'User Id',
'Comments',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Step 5: Run Migrations

After defining the migrations and models, you can run the migrations to create the tables in your database:


php artisan migrate

This will set up your database schema according to the provided MySQL queries, and you will have the corresponding Eloquent models ready for use in your Laravel application.

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

Each controller will handle the basic CRUD operations: Create, Read, Update, and Delete. Below, I will provide the commands to create the controllers and the basic structure for each controller.

Step 1: Create Controllers

You can create controllers for each model using the following Artisan commands:


php artisan make:controller UserController --resource
php artisan make:controller RoleController --resource
php artisan make:controller ElectionController --resource
php artisan make:controller CandidateController --resource
php artisan make:controller BallotController --resource
php artisan make:controller VoteController --resource
php artisan make:controller ResultController --resource
php artisan make:controller NotificationController --resource
php artisan make:controller SupportTicketController --resource
php artisan make:controller FeedbackController --resource

The --resource flag generates a controller with methods for all the resourceful actions.

Step 2: Define CRUD Operations in Controllers

Below are the basic CRUD operations for each controller. You will need to adjust the code according to your application's requirements, including validation and any additional logic.

UserController


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',
'PasswordHash' => 'required',
'Email' => 'required|email|unique:users|max:100',
'RoleId' => 'nullable|exists:roles,RoleId',
]);
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->id,
'PasswordHash' => 'required',
'Email' => 'required|email|max:100|unique:users,Email,' . $user->id,
'RoleId' => 'nullable|exists:roles,RoleId',
]);
$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.');
}
}

RoleController


namespace App\Http\Controllers;
use App\Models\Role;
use Illuminate\Http\Request;
class RoleController extends Controller
{
public function index()
{
$roles = Role::all();
return view('roles.index', compact('roles'));
}
public function create()
{
return view('roles.create');
}
public function store(Request $request)
{
$request->validate([
'RoleName' => 'required|unique:roles|max:50',
]);
Role::create($request->all());
return redirect()->route('roles.index')->with('success', 'Role created successfully.');
}
public function show(Role $role)
{
return view('roles.show', compact('role'));
}
public function edit(Role $role)
{
return view('roles.edit', compact('role'));
}
public function update(Request $request, Role $role)
{
$request->validate([
'RoleName' => 'required|max:50|unique:roles,RoleName,' . $role->id,
]);
$role->update($request->all());
return redirect()->route('roles.index')->with('success', 'Role updated successfully.');
}
public function destroy(Role $role)
{
$role->delete();
return redirect()->route('roles.index')->with('success', 'Role deleted successfully.');
}
}

ElectionController


namespace App\Http\Controllers;
use App\Models\Election;
use Illuminate\Http\Request;
class ElectionController extends Controller
{
public function index()
{
$elections = Election::all();
return view('elections.index', compact('elections'));
}
public function create()
{
return view('elections.create');
}
public function store(Request $request)
{
$request->validate([
'Title' => 'required|max:100',
'Description' => 'nullable',
'StartDate' => 'required|date',
'EndDate' => 'required|date|after_or_equal:StartDate',
]);
Election::create($request->all());
return redirect()->route('elections.index')->with('success', 'Election created successfully.');
}
public function show(Election $election)
{
return view('elections.show', compact('election'));
}
public function edit(Election $election)
{
return view('elections.edit', compact('election'));
}
public function update(Request $request, Election $election)
{
$request->validate([
'Title' => 'required|max:100',
'Description' => 'nullable',
'StartDate' => 'required|date',
'EndDate' => 'required|date|after_or_equal:StartDate',
]);
$election->update($request->all());
return redirect()->route('elections.index')->with('success', 'Election updated successfully.');
}
public function destroy(Election $election)
{
$election->delete();
return redirect()->route('elections.index')->with('success', 'Election deleted successfully.');
}
}

CandidateController


namespace App\Http\Controllers;
use App\Models\Candidate;
use App\Models\Election;
use Illuminate\Http\Request;
class CandidateController extends Controller
{
public function index()
{
$candidates = Candidate::all();
return view('candidates.index', compact('candidates'));
}
public function create()
{
$elections = Election::all();
return view('candidates.create', compact('elections'));
}
public function store(Request $request)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'Name' => 'required|max:100',
'Party' => 'nullable|max:100',
]);
Candidate::create($request->all());
return redirect()->route('candidates.index')->with('success', 'Candidate created successfully.');
}
public function show(Candidate $candidate)
{
return view('candidates.show', compact('candidate'));
}
public function edit(Candidate $candidate)
{
$elections = Election::all();
return view('candidates.edit', compact('candidate', 'elections'));
}
public function update(Request $request, Candidate $candidate)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'Name' => 'required|max:100',
'Party' => 'nullable|max:100',
]);
$candidate->update($request->all());
return redirect()->route('candidates.index')->with('success', 'Candidate updated successfully.');
}
public function destroy(Candidate $candidate)
{
$candidate->delete();
return redirect()->route('candidates.index')->with('success', 'Candidate deleted successfully.');
}
}

BallotController


namespace App\Http\Controllers;
use App\Models\Ballot;
use App\Models\Election;
use App\Models\User;
use Illuminate\Http\Request;
class BallotController extends Controller
{
public function index()
{
$ballots = Ballot::all();
return view('ballots.index', compact('ballots'));
}
public function create()
{
$elections = Election::all();
$users = User::all();
return view('ballots.create', compact('elections', 'users'));
}
public function store(Request $request)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'VoterId' => 'required|exists:users,User Id',
]);
Ballot::create($request->all());
return redirect()->route('ballots.index')->with('success', 'Ballot created successfully.');
}
public function show(Ballot $ballot)
{
return view('ballots.show', compact('ballot'));
}
public function edit(Ballot $ballot)
{
$elections = Election::all();
$users = User::all();
return view('ballots.edit', compact('ballot', 'elections', 'users'));
}
public function update(Request $request, Ballot $ballot)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'VoterId' => 'required|exists:users,User Id',
]);
$ballot->update($request->all());
return redirect()->route('ballots.index')-> with('success', 'Ballot updated successfully.');
}
public function destroy(Ballot $ballot)
{
$ballot->delete();
return redirect()->route('ballots.index')->with('success', 'Ballot deleted successfully.');
}
}

VoteController


namespace App\Http\Controllers;
use App\Models\Vote;
use App\Models\Ballot;
use App\Models\Candidate;
use Illuminate\Http\Request;
class VoteController extends Controller
{
public function index()
{
$votes = Vote::all();
return view('votes.index', compact('votes'));
}
public function create()
{
$ballots = Ballot::all();
$candidates = Candidate::all();
return view('votes.create', compact('ballots', 'candidates'));
}
public function store(Request $request)
{
$request->validate([
'BallotId' => 'required|exists:ballots,BallotId',
'CandidateId' => 'required|exists:candidates,CandidateId',
]);
Vote::create($request->all());
return redirect()->route('votes.index')->with('success', 'Vote created successfully.');
}
public function show(Vote $vote)
{
return view('votes.show', compact('vote'));
}
public function edit(Vote $vote)
{
$ballots = Ballot::all();
$candidates = Candidate::all();
return view('votes.edit', compact('vote', 'ballots', 'candidates'));
}
public function update(Request $request, Vote $vote)
{
$request->validate([
'BallotId' => 'required|exists:ballots,BallotId',
'CandidateId' => 'required|exists:candidates,CandidateId',
]);
$vote->update($request->all());
return redirect()->route('votes.index')->with('success', 'Vote updated successfully.');
}
public function destroy(Vote $vote)
{
$vote->delete();
return redirect()->route('votes.index')->with('success', 'Vote deleted successfully.');
}
}

ResultController


namespace App\Http\Controllers;
use App\Models\Result;
use App\Models\Election;
use App\Models\Candidate;
use Illuminate\Http\Request;
class ResultController extends Controller
{
public function index()
{
$results = Result::all();
return view('results.index', compact('results'));
}
public function create()
{
$elections = Election::all();
$candidates = Candidate::all();
return view('results.create', compact('elections', 'candidates'));
}
public function store(Request $request)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'CandidateId' => 'required|exists:candidates,CandidateId',
'VoteCount' => 'required|integer',
]);
Result::create($request->all());
return redirect()->route('results.index')->with('success', 'Result created successfully.');
}
public function show(Result $result)
{
return view('results.show', compact('result'));
}
public function edit(Result $result)
{
$elections = Election::all();
$candidates = Candidate::all();
return view('results.edit', compact('result', 'elections', 'candidates'));
}
public function update(Request $request, Result $result)
{
$request->validate([
'ElectionId' => 'required|exists:elections,ElectionId',
'CandidateId' => 'required|exists:candidates,CandidateId',
'VoteCount' => 'required|integer',
]);
$result->update($request->all());
return redirect()->route('results.index')->with('success', 'Result updated successfully.');
}
public function destroy(Result $result)
{
$result->delete();
return redirect()->route('results.index')->with('success', 'Result deleted successfully.');
}
}

NotificationController


namespace App\Http\Controllers;
use App\Models\Notification;
use App\Models\User;
use Illuminate\Http\Request;
class NotificationController extends Controller
{
public function index()
{
$notifications = Notification::all();
return view('notifications.index', compact('notifications'));
}
public function create()
{
$users = User::all();
return view('notifications.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required|max:256',
'IsRead' => 'nullable|boolean',
]);
Notification::create($request->all());
return redirect ()->route('notifications.index')->with('success', 'Notification created successfully.');
}
public function show(Notification $notification)
{
return view('notifications.show', compact('notification'));
}
public function edit(Notification $notification)
{
$users = User::all();
return view('notifications.edit', compact('notification', 'users'));
}
public function update(Request $request, Notification $notification)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required|max:256',
'IsRead' => 'nullable|boolean',
]);
$notification->update($request->all());
return redirect()->route('notifications.index')->with('success', 'Notification updated successfully.');
}
public function destroy(Notification $notification)
{
$notification->delete();
return redirect()->route('notifications.index')->with('success', 'Notification deleted successfully.');
}
}

SupportTicketController


namespace App\Http\Controllers;
use App\Models\SupportTicket;
use App\Models\User;
use Illuminate\Http\Request;
class SupportTicketController extends Controller
{
public function index()
{
$supportTickets = SupportTicket::all();
return view('support_tickets.index', compact('supportTickets'));
}
public function create()
{
$users = User::all();
return view('support_tickets.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Subject' => 'required|max:100',
'Message' => 'required',
'Status' => 'required|max:50',
]);
SupportTicket::create($request->all());
return redirect()->route('support_tickets.index')->with('success', 'Support ticket created successfully.');
}
public function show(SupportTicket $supportTicket)
{
return view('support_tickets.show', compact('supportTicket'));
}
public function edit(SupportTicket $supportTicket)
{
$users = User::all();
return view('support_tickets.edit', compact('supportTicket', 'users'));
}
public function update(Request $request, SupportTicket $supportTicket)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Subject' => 'required|max:100',
'Message' => 'required',
'Status' => 'required|max:50',
]);
$supportTicket->update($request->all());
return redirect()->route('support_tickets.index')->with('success', 'Support ticket updated successfully.');
}
public function destroy(SupportTicket $supportTicket)
{
$supportTicket->delete();
return redirect()->route('support_tickets.index')->with('success', 'Support ticket deleted successfully.');
}
}

FeedbackController


namespace App\Http\Controllers;
use App\Models\Feedback;
use App\Models\User;
use Illuminate\Http\Request;
class FeedbackController extends Controller
{
public function index()
{
$feedbacks = Feedback::all();
return view('feedback.index', compact('feedbacks'));
}
public function create()
{
$users = User::all();
return view('feedback.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Comments' => 'nullable',
]);
Feedback::create($request->all());
return redirect()->route('feedback.index')->with('success', 'Feedback created successfully.');
}
public function show(Feedback $feedback)
{
return view('feedback.show', compact('feedback'));
}
public function edit(Feedback $feedback)
{
$users = User::all();
return view('feedback.edit', compact('feedback', 'users'));
}
public function update(Request $request, Feedback $feedback)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Comments' => 'nullable',
]);
$feedback->update($request->all());
return redirect()->route('feedback.index')->with('success', 'Feedback updated successfully.');
}
public function destroy(Feedback $feedback)
{
$feedback->delete();
return redirect()->route('feedback.index')->with('success', 'Feedback deleted successfully.');
}
}

Step 3: Define Routes

You will need to define routes for these controllers in your routes/web.php file. Here's an example of how to set up resource routes for each controller:


use App\Http\Controllers\UserController;
use App\Http\Controllers\ RoleController;
use App\Http\Controllers\ElectionController;
use App\Http\Controllers\CandidateController;
use App\Http\Controllers\BallotController;
use App\Http\Controllers\VoteController;
use App\Http\Controllers\ResultController;
use App\Http\Controllers\NotificationController;
use App\Http\Controllers\SupportTicketController;
use App\Http\Controllers\FeedbackController;
Route::resource('users', UserController::class);
Route::resource('roles', RoleController::class);
Route::resource('elections', ElectionController::class);
Route::resource('candidates', CandidateController::class);
Route::resource('ballots', BallotController::class);
Route::resource('votes', VoteController::class);
Route::resource('results', ResultController::class);
Route::resource('notifications', NotificationController::class);
Route::resource('support_tickets', SupportTicketController::class);
Route::resource('feedback', FeedbackController::class);

Step 4: Create Views

You will also need to create views for each of the CRUD operations. Create a directory for each model under resources/views/ and create the necessary Blade files for listing, creating, editing, and showing records. For example:


resources/views/users/index.blade.php
resources/views/users/create.blade.php
resources/views/users/edit.blade.php
resources/views/users/show.blade.php

Creating view files for each controller using Bootstrap 5 involves creating a structured layout and individual views for listing, creating, editing, and showing records.

Below, I will provide a basic example of how to create these views for each model.

Step 1: Create a Layout File

First, create a layout file that will be used across all views. This file will include Bootstrap 5 CSS and JS links.

File: resources/views/layouts/app.blade.php


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laravel CRUD</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
@yield('content')
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

Step 2: Create Views for Each Model

Now, create the views for each model. Below are examples for the User, Role, Election, Candidate, Ballot, Vote, Result, Notification, SupportTicket, and Feedback models.

User Views

File: resources/views/users/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Users</h1>
<a href="{{ route('users.create') }}" class="btn btn-primary mb-3">Create User</a>
<table class="table">
<thead>
<tr>
<th>User ID</th>
<th>Username</th>
<th>Email</th>
<th>Role</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->Username }}</td>
<td>{{ $user->Email }}</td>
<td>{{ $user->role->RoleName ?? 'N/A' }}</td>
<td>
<a href="{{ route('users.edit', $user) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('users.destroy', $user) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/users/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create User</h1>
<form action="{{ route('users.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="Username" class="form-label">Username</label>
<input type="text" class="form-control" id="Username" name="Username" required>
</div>
<div class="mb-3">
<label for="PasswordHash" class="form-label">Password</label>
<input type="password" class="form-control" id="PasswordHash" name="PasswordHash" required>
</div>
<div class="mb-3">
<label for="Email" class="form-label">Email</label>
<input type="email" class="form-control" id="Email" name="Email" required>
</div>
<div class="mb-3">
<label for="RoleId" class="form-label">Role</label>
<select class="form-select" id="RoleId" name="RoleId">
<option value="">Select Role</option>
@foreach ($roles as $role)
<option value="{{ $role->RoleId }}">{{ $role->RoleName }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Create User</button>
</form>
@endsection

File: resources/views/users/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit User</h1>
<form action="{{ route('users.update', $user) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="Username" class="form-label">Username</label>
<input type="text" class="form-control" id="Username" name="Username" value="{{ $user->Username }}" required>
</div>
<div class="mb-3">
<label for="PasswordHash" class="form-label">Password</label>
<input type="password" class="form-control" id="PasswordHash" name="PasswordHash" required>
</div>
<div class="mb-3">
<label for="Email" class="form-label">Email</label>
<input type="email" class="form-control" id="Email" name="Email" value="{{ $user->Email }}" required>
</div>
<div class="mb-3">
<label for="RoleId" class="form-label">Role</label>
<select class="form-select" id="RoleId" name="RoleId">
<option value="">Select Role</option>
@foreach ($roles as $role)
<option value="{{ $role->RoleId }}" {{ $user->RoleId == $role->RoleId ? 'selected' : '' }}>{{ $role->RoleName }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Update User</button>
</form>
@endsection

File: resources/views/users/show.blade.php


@extends('layouts.app')
@section('content')
<h1>User Details</h1>
<p><strong>Username:</strong> {{ $user->Username }}</p>
<p><strong>Email:</strong> {{ $user->Email }}</p>
<p><strong>Role:</strong> {{ $user->role->RoleName ?? 'N/A' }}</p>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back to Users</a>
@endsection

Role Views

File: resources/views/roles/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
<table class="table">
<thead>
<tr>
<th>Role ID</th>
<th>Role Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($roles as $role)
<tr>
<td>{{ $role->RoleId }}</td>
<td>{{ $role->RoleName }}</td>
<td>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/roles/create.blade.php


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

File: resources/views/roles/edit.blade.php


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

File: resources/views/roles/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Role Details</h1>
<p><strong>Role Name:</strong> {{ $role->RoleName }}</p>
<a href="{{ route ('roles.index') }}" class="btn btn-secondary">Back to Roles</a>
@endsection

Election Views

File: resources/views/elections/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Elections</h1>
<a href="{{ route('elections.create') }}" class="btn btn-primary mb-3">Create Election</a>
<table class="table">
<thead>
<tr>
<th>Election ID</th>
<th>Title</th>
<th>Start Date</th>
<th>End Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($elections as $election)
<tr>
<td>{{ $election->ElectionId }}</td>
<td>{{ $election->Title }}</td>
<td>{{ $election->StartDate }}</td>
<td>{{ $election->EndDate }}</td>
<td>
<a href="{{ route('elections.edit', $election) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('elections.destroy', $election) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/elections/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Election</h1>
<form action="{{ route('elections.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="Title" class="form-label">Title</label>
<input type="text" class="form-control" id="Title" name="Title" required>
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description"></textarea>
</div>
<div class="mb-3">
<label for="StartDate" class="form-label">Start Date</label>
<input type="date" class="form-control" id="StartDate" name="StartDate" required>
</div>
<div class="mb-3">
<label for="EndDate" class="form-label">End Date</label>
<input type="date" class="form-control" id="EndDate" name="EndDate" required>
</div>
<button type="submit" class="btn btn-primary">Create Election</button>
</form>
@endsection

File: resources/views/elections/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Election</h1>
<form action="{{ route('elections.update', $election) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="Title" class="form-label">Title</label>
<input type="text" class="form-control" id="Title" name="Title" value="{{ $election->Title }}" required>
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description">{{ $election->Description }}</textarea>
</div>
<div class="mb-3">
<label for="StartDate" class="form-label">Start Date</label>
<input type="date" class="form-control" id="StartDate" name="StartDate" value="{{ $election->StartDate }}" required>
</div>
<div class="mb-3">
<label for="EndDate" class="form-label">End Date</label>
<input type="date" class="form-control" id="EndDate" name="EndDate" value="{{ $election->EndDate }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Election</button>
</form>
@endsection

File: resources/views/elections/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Election Details</h1>
<p><strong>Title:</strong> {{ $election->Title }}</p>
<p><strong>Description:</strong> {{ $election->Description }}</p>
<p><strong>Start Date:</strong> {{ $election->StartDate }}</p>
<p><strong>End Date:</strong> {{ $election->EndDate }}</p>
<a href="{{ route('elections.index') }}" class="btn btn-secondary">Back to Elections</a>
@endsection

Candidate Views

File: resources/views/candidates/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Candidates</h1>
<a href="{{ route('candidates.create') }}" class="btn btn-primary mb-3">Create Candidate</a>
<table class="table">
<thead>
<tr>
<th>Candidate ID</th>
<th>Name</th>
<th>Party</th>
<th>Election</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($candidates as $candidate)
<tr>
<td>{{ $candidate->CandidateId }}</td>
<td>{{ $candidate->Name }}</td>
<td>{{ $candidate->Party }}</td>
<td>{{ $candidate->election->Title ?? 'N/A' }}</td>
<td>
<a href="{{ route('candidates.edit', $candidate) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('candidates.destroy', $candidate) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/candidates/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Candidate</h1>
<form action="{{ route('candidates.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}">{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Name" class="form-label">Name</label>
<input type="text" class="form-control" id="Name" name="Name" required>
</div>
<div class="mb-3">
<label for="Party" class="form-label">Party</label>
<input type="text" class="form-control" id="Party" name="Party">
</div>
<button type="submit" class="btn btn-primary">Create Candidate</button>
</form>
@endsection

File: resources/views/candidates/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Candidate</h1>
<form action="{{ route('candidates.update', $candidate) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}" {{ $candidate->ElectionId == $election->ElectionId ? 'selected' : '' }}>{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Name" class="form-label">Name</label>
<input type="text" class="form-control" id="Name" name="Name" value="{{ $candidate->Name }}" required>
</div>
<div class="mb-3">
<label for="Party" class="form-label">Party</label>
<input type="text" class="form-control" id="Party" name="Party" value="{{ $candidate->Party }}">
</div>
<button type="submit" class="btn btn-primary">Update Candidate</button>
</form>
@endsection

File: resources/views/candidates/show.blade.php


@extends('layouts.app')
@section('content')
<h 1>Candidate Details</h1>
<p><strong>Name:</strong> {{ $candidate->Name }}</p>
<p><strong>Party:</strong> {{ $candidate->Party }}</p>
<p><strong>Election:</strong> {{ $candidate->election->Title ?? 'N/A' }}</p>
<a href="{{ route('candidates.index') }}" class="btn btn-secondary">Back to Candidates</a>
@endsection

Ballot Views

File: resources/views/ballots/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Ballots</h1>
<a href="{{ route('ballots.create') }}" class="btn btn-primary mb-3">Create Ballot</a>
<table class="table">
<thead>
<tr>
<th>Ballot ID</th>
<th>Election</th>
<th>Voter</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($ballots as $ballot)
<tr>
<td>{{ $ballot->BallotId }}</td>
<td>{{ $ballot->election->Title ?? 'N/A' }}</td>
<td>{{ $ballot->voter->Username ?? 'N/A' }}</td>
<td>
<a href="{{ route('ballots.edit', $ballot) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('ballots.destroy', $ballot) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/ballots/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Ballot</h1>
<form action="{{ route('ballots.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}">{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="VoterId" class="form-label">Voter</label>
<select class="form-select" id="VoterId" name="VoterId" required>
<option value="">Select Voter</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Create Ballot</button>
</form>
@endsection

File: resources/views/ballots/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Ballot</h1>
<form action="{{ route('ballots.update', $ballot) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}" {{ $ballot->ElectionId == $election->ElectionId ? 'selected' : '' }}>{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="VoterId" class="form-label">Voter</label>
<select class="form-select" id="VoterId" name="VoterId" required>
<option value="">Select Voter</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}" {{ $ballot->VoterId == $user->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Update Ballot</button </form>
@endsection

File: resources/views/ballots/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Ballot Details</h1>
<p><strong>Election:</strong> {{ $ballot->election->Title ?? 'N/A' }}</p>
<p><strong>Voter:</strong> {{ $ballot->voter->Username ?? 'N/A' }}</p>
<a href="{{ route('ballots.index') }}" class="btn btn-secondary">Back to Ballots</a>
@endsection

Vote Views

File: resources/views/votes/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Votes</h1>
<a href="{{ route('votes.create') }}" class="btn btn-primary mb-3">Create Vote</a>
<table class="table">
<thead>
<tr>
<th>Vote ID</th>
<th>Ballot</th>
<th>Candidate</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($votes as $vote)
<tr>
<td>{{ $vote->VoteId }}</td>
<td>{{ $vote->ballot->VoterId ?? 'N/A' }}</td>
<td>{{ $vote->candidate->Name ?? 'N/A' }}</td>
<td>
<a href="{{ route('votes.edit', $vote) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('votes.destroy', $vote) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/votes/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Vote</h1>
<form action="{{ route('votes.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="BallotId" class="form-label">Ballot</label>
<select class="form-select" id="BallotId" name="BallotId" required>
<option value="">Select Ballot</option>
@foreach ($ballots as $ballot)
<option value="{{ $ballot->BallotId }}">{{ $ballot->VoterId }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="CandidateId" class="form-label">Candidate</label>
<select class="form-select" id="CandidateId" name="CandidateId" required>
<option value="">Select Candidate</option>
@foreach ($candidates as $candidate)
<option value="{{ $candidate->CandidateId }}">{{ $candidate->Name }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Create Vote</button>
</form>
@endsection

File: resources/views/votes/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Vote</h1>
<form action="{{ route('votes.update', $vote) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="BallotId" class="form-label">Ballot</label>
<select class="form-select" id="BallotId" name="BallotId" required>
<option value="">Select Ballot</option>
@foreach ($ballots as $ballot)
<option value="{{ $ballot->BallotId }}" {{ $vote->BallotId == $ballot->BallotId ? 'selected' : '' }}>{{ $ballot->VoterId }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="CandidateId" class="form-label">Candidate</label>
<select class="form-select" id="CandidateId" name="CandidateId" required>
<option value="">Select Candidate</option>
@foreach ($candidates as $candidate)
<option value="{{ $candidate->CandidateId }}" {{ $vote->CandidateId == $candidate->CandidateId ? 'selected' : '' }}>{{ $candidate->Name }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Update Vote</button>
</form>
@endsection

File: resources/views/votes/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Vote Details</h1>
<p><strong>Ballot:</strong> {{ $vote->ballot->VoterId ?? 'N/A' }}</p>
<p><strong>Candidate:</strong> {{ $vote->candidate->Name ?? 'N/A' }}</p>
<a href="{{ route('votes.index') }}" class="btn btn-secondary">Back to Votes</a>
@endsection

Result Views

File: resources/views/results/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Results</h1>
<a href="{{ route('results.create') }}" class="btn btn-primary mb-3">Create Result</a>
<table class="table">
<thead>
<tr>
<th>Result ID</th>
<th>Election</th>
<th>Candidate</th>
<th>Vote Count</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($results as $result)
<tr>
<td>{{ $result->ResultId }}</td>
<td>{{ $result->election->Title ?? 'N/A' }}</td>
<td>{{ $result->candidate->Name ?? 'N/A' }}</td>
<td>{{ $result->VoteCount }}</td>
<td>
<a href="{{ route('results.edit', $result) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('results.destroy', $result) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/results/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Result</h1>
<form action="{{ route('results.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}">{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="CandidateId" class="form-label">Candidate</label>
<select class="form-select" id="CandidateId" name="CandidateId" required>
<option value="">Select Candidate</option>
@foreach ($candidates as $candidate)
<option value="{{ $candidate->CandidateId }}">{{ $candidate->Name }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="VoteCount" class="form-label">Vote Count</label>
<input type="number" class="form-control" id="VoteCount" name="VoteCount" required>
</div>
<button type="submit" class="btn btn-primary">Create Result</button>
</form>
@endsection

File: resources/views/results/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Result</h1>
<form action="{{ route('results.update', $result) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="ElectionId" class="form-label">Election</label>
<select class="form-select" id="ElectionId" name="ElectionId" required>
<option value="">Select Election</option>
@foreach ($elections as $election)
<option value="{{ $election->ElectionId }}" {{ $result->ElectionId == $election->ElectionId ? 'selected' : '' }}>{{ $election->Title }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="CandidateId" class="form-label">Candidate</label>
<select class="form-select" id="CandidateId" name="CandidateId" required>
<option value=""> Select Candidate</option>
@foreach ($candidates as $candidate)
<option value="{{ $candidate->CandidateId }}" {{ $result->CandidateId == $candidate->CandidateId ? 'selected' : '' }}>{{ $candidate->Name }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="VoteCount" class="form-label">Vote Count</label>
<input type="number" class="form-control" id="VoteCount" name="VoteCount" value="{{ $result->VoteCount }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Result</button>
</form>
@endsection

File: resources/views/results/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Result Details</h1>
<p><strong>Election:</strong> {{ $result->election->Title ?? 'N/A' }}</p>
<p><strong>Candidate:</strong> {{ $result->candidate->Name ?? 'N/A' }}</p>
<p><strong>Vote Count:</strong> {{ $result->VoteCount }}</p>
<a href="{{ route('results.index') }}" class="btn btn-secondary">Back to Results</a>
@endsection

Notification Views

File: resources/views/notifications/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Notifications</h1>
<a href="{{ route('notifications.create') }}" class="btn btn-primary mb-3">Create Notification</a>
<table class="table">
<thead>
<tr>
<th>Notification ID</th>
<th>User</th>
<th>Message</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($notifications as $notification)
<tr>
<td>{{ $notification->NotificationId }}</td>
<td>{{ $notification->user->Username ?? 'N/A' }}</td>
<td>{{ $notification->Message }}</td>
<td>{{ $notification->IsRead ? 'Read' : 'Unread' }}</td>
<td>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/notifications/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Notification</h1>
<form action="{{ route('notifications.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required></textarea>
</div>
<div class="mb-3">
<label for="IsRead" class="form-label">Is Read</label>
<select class="form-select" id="IsRead" name="IsRead">
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Create Notification</button>
</form>
@endsection

File: resources/views/ notifications/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Notification</h1>
<form action="{{ route('notifications.update', $notification) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@ foreach ($users as $user)
<option value="{{ $user->User Id }}" {{ $notification->User Id == $user->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required>{{ $notification->Message }}</textarea>
</div>
<div class="mb-3">
<label for="IsRead" class="form-label">Is Read</label>
<select class="form-select" id="IsRead" name="IsRead">
<option value="0" {{ $notification->IsRead ? '' : 'selected' }}>No</option>
<option value="1" {{ $notification->IsRead ? 'selected' : '' }}>Yes</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Update Notification</button>
</form>
@endsection

File: resources/views/notifications/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Notification Details</h1>
<p><strong>User:</strong> {{ $notification->user->Username ?? 'N/A' }}</p>
<p><strong>Message:</strong> {{ $notification->Message }}</p>
<p><strong>Status:</strong> {{ $notification->IsRead ? 'Read' : 'Unread' }}</p>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back to Notifications</a>
@endsection

Support Ticket Views

File: resources/views/support_tickets/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Support Tickets</h1>
<a href="{{ route('support_tickets.create') }}" class="btn btn-primary mb-3">Create Support Ticket</a>
<table class="table">
<thead>
<tr>
<th>Ticket ID</th>
<th>User</th>
<th>Subject</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($supportTickets as $ticket)
<tr>
<td>{{ $ticket->TicketId }}</td>
<td>{{ $ticket->user->Username ?? 'N/A' }}</td>
<td>{{ $ticket->Subject }}</td>
<td>{{ $ticket->Status }}</td>
<td>
<a href="{{ route('support_tickets.edit', $ticket) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('support_tickets.destroy', $ticket) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/support_tickets/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Support Ticket</h1>
<form action="{{ route('support_tickets.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Subject" class="form-label">Subject</label>
<input type="text" class="form-control" id="Subject" name="Subject" required>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required></textarea>
</div>
<div class="mb-3">
<label for="Status" class="form-label">Status</label>
<input type="text" class="form-control" id="Status" name="Status" required>
</div>
<button type="submit" class="btn btn-primary">Create Support Ticket</button>
</form>
@endsection

File: resources/views/support_tickets/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Support Ticket</h1>
<form action="{{ route('support_tickets.update', $supportTicket) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}" {{ $supportTicket->User Id == $user->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Subject" class="form-label">Subject</label>
<input type="text" class="form-control" id="Subject" name="Subject" value="{{ $supportTicket->Subject }}" required>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required>{{ $supportTicket->Message }}</textarea>
</div>
<div class="mb-3">
<label for="Status" class="form-label">Status</label>
<input type="text" class="form-control" id="Status" name="Status" value="{{ $supportTicket->Status }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Support Ticket</button>
</form>
@endsection

File: resources/views/support_tickets/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Support Ticket Details</h1>
<p><strong>User:</strong> {{ $supportTicket->user->Username ?? 'N/A' }}</p>
<p><strong>Subject:</strong> {{ $supportTicket->Subject }}</p>
<p><strong>Message:</strong> {{ $supportTicket->Message }}</p>
<p><strong>Status:</strong> {{ $supportTicket->Status }}</p>
<a href="{{ route('support_tickets.index') }}" class="btn btn-secondary">Back to Support Tickets</a>
@endsection

Feedback Views

File: resources/views/feedback/index.blade.php


@extends('layouts.app')
@section('content')
<h1>Feedback</h1>
<a href="{{ route('feedback.create') }}" class="btn btn-primary mb-3">Create Feedback</a>
<table class="table">
<thead>
<tr>
<th>Feedback ID</th>
<th>User</th>
<th>Comments</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($feedbacks as $feedback)
<tr>
<td>{{ $feedback->FeedbackId }}</td>
<td>{{ $feedback->user->Username ?? 'N/A' }}</td>
<td>{{ $feedback->Comments }}</td>
<td>
<a href="{{ route('feedback.edit', $feedback) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('feedback.destroy', $feedback) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

File: resources/views/feedback/create.blade.php


@extends('layouts.app')
@section('content')
<h1>Create Feedback</h1>
<form action="{{ route('feedback.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Comments" class="form-label">Comments</label>
<textarea class="form-control" id="Comments" name="Comments"></textarea>
</div>
<button type="submit" class="btn btn-primary">Create Feedback</button>
</form>
@endsection

File: resources/views/feedback/edit.blade.php


@extends('layouts.app')
@section('content')
<h1>Edit Feedback</h1>
<form action="{{ route('feedback.update', $feedback) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->User Id }}" {{ $feedback->User Id == $user->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Comments" class="form-label">Comments</label>
<textarea class="form-control" id="Comments" name="Comments">{{ $feedback->Comments }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Feedback</button>
</form>
@endsection

File: resources/views/feedback/show.blade.php


@extends('layouts.app')
@section('content')
<h1>Feedback Details</h1>
<p><strong>User:</strong> {{ $feedback->user->Username ?? 'N/A' }}</p>
<p><strong>Comments:</strong> {{ $feedback->Comments }}</p>
<a href="{{ route('feedback.index') }}" class="btn btn-secondary">Back to Feedback</a>
@endsection

Below is a complete layout file for a Laravel application using Bootstrap 5.

This layout file will serve as a base for all your views, providing a consistent look and feel across your application.

Layout File: resources/views/layouts/app.blade.php


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title', 'Laravel CRUD Application')</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('css/app.css') }}"> <!-- Optional custom CSS -->
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="{{ url('/') }}">Laravel CRUD</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="{{ route('users.index') }}">Users</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('roles.index') }}">Roles</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('elections.index') }}">Elections</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('candidates.index') }}">Candidates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('ballots.index') }}">Ballots</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('votes.index') }}">Votes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('results.index') }}">Results</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('notifications.index') }}">Notifications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('support_tickets.index') }}">Support Tickets</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('feedback.index') }}">Feedback</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-4">
@yield('content')
</div>
<footer class="bg-light text-center text-lg-start mt-4">
<div class="text-center p-3">
© 2023 Your Company Name
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

Explanation of the Layout File

HTML Structure: The layout file starts with the standard HTML5 doctype and includes the necessary <head> and <body> sections.

Bootstrap CSS: The Bootstrap 5 CSS is included via a CDN link. You can also add a custom CSS file if you want to style your application further.

Navigation Bar: A responsive navigation bar is created using Bootstrap's navbar component. It includes links to different sections of your application (Users, Roles, Elections, etc.). You can modify these links based on your application's routes.

Content Section: The @yield('content') directive is where the content of individual views will be injected. Each view that extends this layout will fill this section with its own content.

Footer: A simple footer is included at the bottom of the page.

Bootstrap JS: The Bootstrap 5 JavaScript bundle is included at the end of the body to ensure that the page loads quickly.

Usage

To use this layout in your views, simply extend it at the top of your Blade files. For example:


@extends('layouts.app')
@section('title', 'User List')
@section('content')
<h1>Users</h1>
<!-- Your content here -->
@endsection

This will ensure that your views inherit the layout structure, including the navigation bar.

Let's continue by providing examples of how to use the layout file in your views.

Example Views Using the Layout

User Index View

File: resources/views/users/index.blade.php


@extends('layouts.app')
@section('title', 'User List')
@section('content')
<h1>Users</h1>
<a href="{{ route('users.create') }}" class="btn btn-primary mb-3">Create User</a>
<table class="table">
<thead>
<tr>
<th>User ID</th>
<th>Username</th>
<th>Email</th>
<th>Role</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->Username }}</td>
<td>{{ $user->Email }}</td>
<td>{{ $user->role->RoleName ?? 'N/A' }}</td>
<td>
<a href="{{ route('users.edit', $user) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('users.destroy', $user) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

User Create View

File: resources/views/users/create.blade.php


@extends('layouts.app')
@section('title', 'Create User')
@section('content')
<h1>Create User</h1>
<form action="{{ route('users.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="Username" class="form-label">Username</label>
<input type="text" class="form-control" id="Username" name="Username" required>
</div>
<div class="mb-3">
<label for="PasswordHash" class="form-label">Password</label>
<input type="password" class="form-control" id="PasswordHash" name="PasswordHash" required>
</div>
<div class="mb-3">
<label for="Email" class="form-label">Email</label>
<input type="email" class="form-control" id="Email" name="Email" required>
</div>
<div class="mb-3">
<label for="RoleId" class="form-label">Role</label>
<select class="form-select" id="RoleId" name="RoleId">
<option value="">Select Role</option>
@foreach ($roles as $role)
<option value="{{ $role->RoleId }}">{{ $role->RoleName }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Create User</button>
</form>
@endsection

Role Index View

File: resources/views/roles/index.blade.php


@extends('layouts.app')
@section('title', 'Role List')
@section('content')
<h1>Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
<table class="table">
<thead>
<tr>
<th>Role ID</th>
<th>Role Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($roles as $role)
<tr>
<td>{{ $role->RoleId }}</td>
<td>{{ $role->RoleName }}</td>
<td>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection

Election Create View

File: resources/views/elections/create.blade.php


@extends('layouts.app')
@section('title', 'Create Election')
@section(' content')
<h1>Create Election</h1>
<form action="{{ route('elections.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="ElectionName" class="form-label">Election Name</label>
<input type="text" class="form-control" id="ElectionName" name="ElectionName" required>
</div>
<div class="mb-3">
<label for="ElectionDate" class="form-label">Election Date</label>
<input type="date" class="form-control" id="ElectionDate" name="ElectionDate" required>
</div>
<button type="submit" class="btn btn-primary">Create Election</button>
</form>
@endsection

Summary

These examples illustrate how to create various views that extend the main layout. Each view is structured to include a title and a content section, allowing for a cohesive user experience across the application. You can replicate this pattern for other models and views in your Laravel application, ensuring that all pages maintain the same layout and styling.

Creating a dashboard page in a Laravel application involves aggregating data from various models and displaying it in a user-friendly format.

Step 1: Create a Dashboard Route

First, you need to define a route for the dashboard in your routes/web.php file:


use App\Http\Controllers\DashboardController;
Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard');

Step 2: Create a Dashboard Controller

Next, create a controller to handle the logic for the dashboard. You can use the following command:


php artisan make:controller DashboardController

Then, implement the index method to fetch the necessary data:

File: app/Http/Controllers/DashboardController.php


namespace App\Http\Controllers;
use App\Models\User;
use App\Models\Role;
use App\Models\Election;
use App\Models\Candidate;
use App\Models\Ballot;
use App\Models\Vote;
use App\Models\Result;
use App\Models\Notification;
use App\Models\SupportTicket;
use App\Models\Feedback;
use Illuminate\Http\Request;
class DashboardController extends Controller
{
public function index()
{
$userCount = User::count();
$roleCount = Role::count();
$electionCount = Election::count();
$candidateCount = Candidate::count();
$ballotCount = Ballot::count();
$voteCount = Vote::count();
$resultCount = Result::count();
$notificationCount = Notification::count();
$supportTicketCount = SupportTicket::count();
$feedbackCount = Feedback::count();
return view('dashboard.index', compact(
'userCount',
'roleCount',
'electionCount',
'candidateCount',
'ballotCount',
'voteCount',
'resultCount',
'notificationCount',
'supportTicketCount',
'feedbackCount'
));
}
}

Step 3: Create the Dashboard View

Now, create the dashboard view file where you will display the consolidated data.

File: resources/views/dashboard/index.blade.php


@extends('layouts.app')
@section('title', 'Dashboard')
@section('content')
<h1>Dashboard</h1>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-primary mb-3">
<div class="card-header">Total Users</div>
<div class="card-body">
<h5 class="card-title">{{ $userCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Total Roles</div>
<div class="card-body">
<h5 class="card-title">{{ $roleCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Total Elections</div>
<div class="card-body">
<h5 class="card-title">{{ $electionCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Total Candidates</div>
<div class="card-body">
<h5 class="card-title">{{ $candidateCount }}</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-danger mb-3">
<div class="card-header">Total Ballots</div>
<div class="card-body">
<h5 class="card-title">{{ $ballotCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-secondary mb-3">
<div class="card-header">Total Votes</div>
<div class="card-body">
<h5 class="card-title">{{ $voteCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-dark mb-3">
<div class="card-header">Total Results</div>
< div class="card-body">
<h5 class="card-title">{{ $resultCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-light mb-3">
<div class="card-header">Total Notifications</div>
<div class="card-body">
<h5 class="card-title">{{ $notificationCount }}</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Total Support Tickets</div>
<div class="card-body">
<h5 class="card-title">{{ $supportTicketCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Total Feedback</div>
<div class="card-body">
<h5 class="card-title">{{ $feedbackCount }}</h5>
</div>
</div>
</div>
</div>
@endsection

Summary

This dashboard page aggregates and displays key metrics related to your project, providing a quick overview of the application's status. You can further enhance this dashboard by adding charts or graphs for better visualization of the data.