Project Introduction
The Real Estate Booking Project is a comprehensive web-based platform designed to facilitate the buying, selling, and renting of properties. This system aims to connect property owners, real estate agents, and potential buyers or renters in a seamless and efficient manner. With the growing demand for online real estate services, the Real Estate Booking Project addresses these needs by providing a user-friendly interface and robust functionalities for all stakeholders involved in the real estate market.
The platform features property listings, advanced search options, booking management, and secure payment processing. Users can easily browse available properties, schedule viewings, and make inquiries directly through the platform. Additionally, the system includes tools for real estate agents to manage their listings, track leads, and communicate with clients. By automating these processes, the Real Estate Booking Project aims to enhance the overall experience for users and streamline operations for real estate professionals.
Project Objectives
- To develop an intuitive interface for users to search for and book properties easily.
- To implement advanced search and filtering options for property listings based on various criteria.
- To provide secure payment processing options for transactions related to property bookings.
- To enable property owners and agents to manage their listings and track inquiries effectively.
- To facilitate communication between buyers, renters, and real estate professionals through messaging features.
- To generate reports on property performance, user engagement, and market trends.
- To ensure data security and privacy for all user information and transaction details.
- To enhance user engagement through features like property recommendations and virtual tours.
User Management Module
- User Registration/Login: Allow users (buyers, sellers, agents, and administrators) to create accounts and log in securely.
- Role Management: Differentiate between user roles (e.g., admin, real estate agent, buyer, seller) with varying permissions.
- Profile Management: Enable users to manage their profiles, including personal information, contact details, and preferences.
Property Management Module
- Property Listings: Allow agents and sellers to create and manage property listings, including details such as location, price, size, and amenities.
- Media Upload: Enable users to upload images, videos, and virtual tours of properties.
- Property Status Tracking: Track the status of properties (e.g., available, under contract, sold).
Search and Filter Module
- Property Search: Provide a search functionality for users to find properties based on criteria such as location, price range, type (e.g., residential, commercial), and features.
- Advanced Filtering: Allow users to filter search results based on specific attributes (e.g., number of bedrooms, bathrooms, square footage).
Booking and Inquiry Management Module
- Appointment Scheduling: Allow potential buyers or renters to schedule property viewings or consultations with agents.
- Inquiry Management: Enable users to submit inquiries about properties and track responses from agents.
- Booking Confirmation: Send confirmation notifications for scheduled viewings or appointments.
Payment Processing Module
- Payment Gateway Integration: Integrate with payment gateways for secure online transactions (e.g., booking fees, deposits).
- Transaction Management: Track and manage financial transactions related to property bookings and sales.
Document Management Module
- Document Upload: Allow users to upload necessary documents (e.g., identification, proof of income, property deeds).
- Document Storage: Store and manage documents securely for easy access during transactions.
Reporting and Analytics Module
- Sales Reports: Generate reports on property sales, rental transactions, and revenue.
- User Analytics: Track user engagement, property views, and inquiries to inform marketing strategies.
- Market Trends: Analyze market trends based on property listings, sales data, and user behavior.
Communication Module
- Internal Messaging: Facilitate communication between users (e.g., buyers and agents) through a secure messaging system.
- Notifications: Send notifications for new listings, inquiries, appointment reminders, and updates.
Marketing and Promotions Module
- Promotional Campaigns: Manage marketing campaigns for featured properties or special offers.
- Email Marketing: Send targeted email campaigns to users based on their preferences and search history.
- Social Media Integration: Integrate with social media platforms for advertising and engagement.
Admin Dashboard Module
- User Management: Admins can manage users, including banning or promoting users.
- Property Management: Admins can oversee all property listings, including editing, deleting, or approving listings.
- System Settings: Manage platform-wide settings, including user roles, permissions, and notifications.
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.
Feedback and Improvement Module
- User Feedback Collection: Allow users to provide feedback on their experiences with the platform and services.
- Continuous Improvement: Implement mechanisms for the system to learn from feedback and improve user experience.
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
);
-- Properties Table
CREATE TABLE Properties (
PropertyId INT PRIMARY KEY IDENTITY(1,1),
Title NVARCHAR(100) NOT NULL,
Description NVARCHAR(MAX),
Address NVARCHAR(255) NOT NULL,
City NVARCHAR(100) NOT NULL,
State NVARCHAR(100) NOT NULL,
ZipCode NVARCHAR(10),
Price DECIMAL(10, 2) NOT NULL,
PropertyType NVARCHAR(50), -- e.g., House, Apartment, Commercial
Status NVARCHAR(20) DEFAULT 'Available', -- e.g., Available, Sold, Pending
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE()
);
-- Media Table
CREATE TABLE Media (
MediaId INT PRIMARY KEY IDENTITY(1,1),
PropertyId INT,
MediaType NVARCHAR(50), -- e.g., Image, Video
MediaUrl NVARCHAR(255) NOT NULL,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (PropertyId) REFERENCES Properties(PropertyId)
);
-- Appointments Table
CREATE TABLE Appointments (
AppointmentId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
PropertyId INT,
AppointmentDate DATETIME NOT NULL,
Status NVARCHAR(20) DEFAULT 'Scheduled',
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (PropertyId) REFERENCES Properties(PropertyId)
);
-- Payments Table
CREATE TABLE Payments (
PaymentId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
PropertyId 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 (PropertyId) REFERENCES Properties(PropertyId)
);
-- Documents Table
CREATE TABLE Documents (
DocumentId INT PRIMARY KEY IDENTITY(1,1),
PropertyId INT,
DocumentType NVARCHAR(50), -- e.g., Lease Agreement, Title Deed
DocumentUrl NVARCHAR(255) NOT NULL,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (PropertyId) REFERENCES Properties(PropertyId)
);
-- Reports Table
CREATE TABLE Reports (
ReportId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
PropertyId INT,
ReportDate DATETIME DEFAULT GETDATE(),
Description NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId),
FOREIGN KEY (PropertyId) REFERENCES Properties(PropertyId)
);
-- Messages Table
CREATE TABLE Messages (
MessageId INT PRIMARY KEY IDENTITY(1,1),
SenderId INT,
ReceiverId INT,
MessageText NVARCHAR(MAX),
SentAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (SenderId) REFERENCES Users(UserId),
FOREIGN KEY (ReceiverId) REFERENCES Users(UserId)
);
-- 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)
);
-- Campaigns Table
CREATE TABLE Campaigns (
CampaignId INT PRIMARY KEY IDENTITY(1,1),
CampaignName NVARCHAR(100) NOT NULL,
StartDate DATETIME,
EndDate DATETIME,
DiscountPercentage DECIMAL(5, 2),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE()
);
-- Feedback Table
CREATE TABLE Feedbacks (
FeedbackId INT PRIMARY KEY IDENTITY(1 ,1),
UserId INT,
Comments NVARCHAR(MAX),
Rating INT CHECK (Rating >= 1 AND Rating <= 5),
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, agent, buyer).
Properties: Contains details about properties available for booking.
Media: Manages media files associated with properties, such as images and videos.
Appointments: Tracks appointments for property viewings.
Payments: Records payment transactions related to property bookings.
Documents: Stores important documents related to properties.
Reports: Manages reports submitted by users regarding properties.
Messages: Facilitates communication between users within the system.
Notifications: Keeps track of notifications sent to users.
Campaigns: Manages marketing campaigns for properties.
Feedback: Collects feedback from users regarding their experiences with the platform.
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 define the migrations based on your SQL 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('PasswordHash', 255);
$table->string('Email', 100)->unique();
$table->string('Phone', 15)->nullable();
$table->foreignId('RoleId')->nullable()->constrained('roles', 'RoleId');
$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('RoleId');
$table->string('RoleName', 50)->unique();
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}
Migration for Properties Table
// database/migrations/2025_02_01_000003_create_properties_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePropertiesTable extends Migration
{
public function up()
{
Schema::create('properties', function (Blueprint $table) {
$table->id('PropertyId');
$table->string('Title', 100);
$table->text('Description')->nullable();
$table->string('Address', 255);
$table->string('City', 100);
$table->string('State', 100);
$table->string('ZipCode', 10)->nullable();
$table->decimal('Price', 10, 2);
$table->string('PropertyType', 50)->nullable();
$table->string('Status', 20)->default('Available');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('properties');
}
}
Migration for Media Table
// database/migrations/2025_02_01_000004_create_media_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMediaTable extends Migration
{
public function up()
{
Schema::create('media', function (Blueprint $table) {
$table->id('MediaId');
$table->foreignId('PropertyId')->constrained('properties', 'PropertyId');
$table->string('MediaType', 50);
$table->string('MediaUrl', 255);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('media');
}
}
Migration for Appointments Table
// database/migrations/2025_02_01_000005_create_appointments_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAppointmentsTable extends Migration
{
public function up()
{
Schema::create('appointments', function (Blueprint $table) {
$table->id('AppointmentId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->foreignId('PropertyId')->constrained('properties', 'PropertyId');
$table->dateTime('AppointmentDate');
$table->string('Status', 20)->default('Scheduled');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('appointments');
}
}
Migration for Payments Table
// database/migrations/2025_02_01_000006_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('PaymentId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->foreignId('PropertyId')->constrained('properties', 'PropertyId');
$table->decimal('Amount', 10, 2);
$table->dateTime('PaymentDate')->default(now());
$table->string('PaymentMethod', 50)->nullable();
$table->string('Status', 20)->default('Pending');
});
}
public function down()
{
Schema::dropIfExists('payments');
}
}
Migration for Documents Table
// database/migrations/2025_02_01_000007_create_documents_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDocumentsTable extends Migration
{
public function up()
{
Schema::create('documents', function (Blueprint $table) {
$table->id('DocumentId');
$table->foreignId('PropertyId')->constrained('properties', 'PropertyId');
$table->string('DocumentType', 50);
$table->string('DocumentUrl', 255);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('documents');
}
}
Migration for Reports Table
// database/migrations/2025_02_01_000008_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('ReportId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->foreignId(' PropertyId')->constrained('properties', 'PropertyId');
$table->dateTime('ReportDate')->default(now());
$table->text('Description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('reports');
}
}
Migration for Messages Table
// database/migrations/2025_02_01_000009_create_messages_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMessagesTable extends Migration
{
public function up()
{
Schema::create('messages', function (Blueprint $table) {
$table->id('MessageId');
$table->foreignId('SenderId')->constrained('users', 'User Id');
$table->foreignId('ReceiverId')->constrained('users', 'User Id');
$table->text('MessageText');
$table->dateTime('SentAt')->default(now());
});
}
public function down()
{
Schema::dropIfExists('messages');
}
}
Migration for Notifications Table
// database/migrations/2025_02_01_000010_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('NotificationId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->text('Message');
$table->boolean('IsRead')->default(false);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('notifications');
}
}
Migration for Campaigns Table
// database/migrations/2025_02_01_000011_create_campaigns_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCampaignsTable extends Migration
{
public function up()
{
Schema::create('campaigns', function (Blueprint $table) {
$table->id('CampaignId');
$table->string('CampaignName', 100);
$table->dateTime('StartDate')->nullable();
$table->dateTime('EndDate')->nullable();
$table->decimal('DiscountPercentage', 5, 2)->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('campaigns');
}
}
Migration for Feedback Table
// database/migrations/2025_02_01_000012_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('FeedbackId');
$table->foreignId('User Id')->constrained('users', 'User Id');
$table->text('Comments')->nullable();
$table->integer('Rating')->check('Rating >= 1 AND Rating <= 5');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('feedbacks');
}
}
Step 2: Create Eloquent Models
For each table, you will also create a corresponding Eloquent model. Here are the models for the tables defined above.
User Model
// 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', 'PasswordHash', 'Email', 'Phone', 'RoleId'];
}
Role 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 = 'RoleId';
protected $fillable = ['RoleName'];
}
Property Model
// app/Models/Property.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Property extends Model
{
use HasFactory;
protected $table = 'properties';
protected $primaryKey = 'PropertyId';
protected $fillable = ['Title', 'Description', 'Address', 'City', 'State', 'ZipCode', 'Price', 'PropertyType', 'Status'];
}
Media Model
// app /Models/Media.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Media extends Model
{
use HasFactory;
protected $table = 'media';
protected $primaryKey = 'MediaId';
protected $fillable = ['PropertyId', 'MediaType', 'MediaUrl'];
}
Appointment Model
// app/Models/Appointment.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Appointment extends Model
{
use HasFactory;
protected $table = 'appointments';
protected $primaryKey = 'AppointmentId';
protected $fillable = ['User Id', 'PropertyId', 'AppointmentDate', 'Status'];
}
Payment 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 = 'PaymentId';
protected $fillable = ['User Id', 'PropertyId', 'Amount', 'PaymentDate', 'PaymentMethod', 'Status'];
}
Document Model
// app/Models/Document.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Document extends Model
{
use HasFactory;
protected $table = 'documents';
protected $primaryKey = 'DocumentId';
protected $fillable = ['PropertyId', 'DocumentType', 'DocumentUrl'];
}
Report 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 = 'ReportId';
protected $fillable = ['User Id', 'PropertyId', 'ReportDate', 'Description'];
}
Message Model
// app/Models/Message.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Message extends Model
{
use HasFactory;
protected $table = 'messages';
protected $primaryKey = 'MessageId';
protected $fillable = ['SenderId', 'ReceiverId', 'MessageText', 'SentAt'];
}
Notification 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 = 'NotificationId';
protected $fillable = ['User Id', 'Message', 'IsRead'];
}
Campaign Model
// app/Models/Campaign.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Campaign extends Model
{
use HasFactory;
protected $table = 'campaigns';
protected $primaryKey = 'CampaignId';
protected $fillable = ['CampaignName', 'StartDate', 'EndDate', 'DiscountPercentage'];
}
Feedback 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 = 'FeedbackId';
protected $fillable = ['User Id', 'Comments', 'Rating'];
}
This setup provides a comprehensive structure for your Laravel application, allowing you to interact with the database using Eloquent ORM.
To create controllers for each model with complete CRUD operations in Laravel, you can use the Artisan command line tool to generate the controllers.
Below, I will provide the code for each controller, including methods for creating, reading, updating, and deleting records.
Step 1: Generate Controllers
You can generate a controller for each model using the following command:
php artisan make:controller ModelNameController --resource
For example, to create a controller for the User model, you would run:
php artisan make:controller UserController --resource
Step 2: Implement CRUD Operations
Below are the implementations for each controller. Each controller will include methods for the CRUD operations: index, create, store, show, edit, update, and destroy.
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',
'PasswordHash' => 'required',
'Email' => 'required|email|unique:users|max:100',
'Phone' => 'nullable|max:15',
'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,
'Phone' => 'nullable|max:15',
'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
// app/Http/Controllers/RoleController.php
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.');
}
}
PropertyController
// app/Http/Controllers/PropertyController.php
namespace App\Http\Controllers;
use App\Models\Property;
use Illuminate\Http\Request;
class PropertyController extends Controller
{
public function index()
{
$properties = Property::all();
return view('properties.index', compact('properties'));
}
public function create()
{
return view('properties.create');
}
public function store(Request $request)
{
$request->validate([
'Title' => 'required|max:100',
'Description' => 'nullable',
'Address' => 'required|max:255',
'City' => 'required|max:100',
'State' => 'required|max:100',
'ZipCode' => 'nullable|max:10',
'Price' => 'required|numeric',
'PropertyType' => 'nullable|max:50',
'Status' => 'nullable|max:20',
]);
Property::create($request->all());
return redirect()->route('properties.index')->with('success', 'Property created successfully.');
}
public function show(Property $property)
{
return view('properties.show', compact('property'));
}
public function edit(Property $property)
{
return view('properties.edit', compact('property'));
}
public function update(Request $request, Property $property)
{
$request->validate([
'Title' => 'required|max:100',
'Description' => 'nullable',
'Address' => 'required|max:255',
'City' => 'required|max:100',
'State' => 'required|max:100',
'ZipCode' => 'nullable|max:10',
'Price' => 'required|numeric',
'PropertyType' => 'nullable|max:50',
'Status' => 'nullable|max:20',
]);
$property->update($request->all());
return redirect()->route('properties.index')->with('success', 'Property updated successfully.');
}
public function destroy(Property $property)
{
$property->delete();
return redirect()->route('properties.index')->with('success', 'Property deleted successfully.');
}
}
MediaController
// app/Http/Controllers/MediaController.php
namespace App\Http\Controllers;
use App\Models\Media;
use Illuminate\Http\Request;
class MediaController extends Controller
{
public function index()
{
$media = Media::all ();
return view('media.index', compact('media'));
}
public function create()
{
return view('media.create');
}
public function store(Request $request)
{
$request->validate([
'PropertyId' => 'required|exists:properties,PropertyId',
'MediaType' => 'required|max:50',
'MediaUrl' => 'required|url|max:255',
]);
Media::create($request->all());
return redirect()->route('media.index')->with('success', 'Media created successfully.');
}
public function show(Media $media)
{
return view('media.show', compact('media'));
}
public function edit(Media $media)
{
return view('media.edit', compact('media'));
}
public function update(Request $request, Media $media)
{
$request->validate([
'PropertyId' => 'required|exists:properties,PropertyId',
'MediaType' => 'required|max:50',
'MediaUrl' => 'required|url|max:255',
]);
$media->update($request->all());
return redirect()->route('media.index')->with('success', 'Media updated successfully.');
}
public function destroy(Media $media)
{
$media->delete();
return redirect()->route('media.index')->with('success', 'Media deleted successfully.');
}
}
AppointmentController
// app/Http/Controllers/AppointmentController.php
namespace App\Http\Controllers;
use App\Models\Appointment;
use Illuminate\Http\Request;
class AppointmentController extends Controller
{
public function index()
{
$appointments = Appointment::all();
return view('appointments.index', compact('appointments'));
}
public function create()
{
return view('appointments.create');
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'AppointmentDate' => 'required|date',
'Status' => 'nullable|max:20',
]);
Appointment::create($request->all());
return redirect()->route('appointments.index')->with('success', 'Appointment created successfully.');
}
public function show(Appointment $appointment)
{
return view('appointments.show', compact('appointment'));
}
public function edit(Appointment $appointment)
{
return view('appointments.edit', compact('appointment'));
}
public function update(Request $request, Appointment $appointment)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'AppointmentDate' => 'required|date',
'Status' => 'nullable|max:20',
]);
$appointment->update($request->all());
return redirect()->route('appointments.index')->with('success', 'Appointment updated successfully.');
}
public function destroy(Appointment $appointment)
{
$appointment->delete();
return redirect()->route('appointments.index')->with('success', 'Appointment deleted successfully.');
}
}
PaymentController
// app/Http/Controllers/PaymentController.php
namespace App\Http\Controllers;
use App\Models\Payment;
use Illuminate\Http\Request;
class PaymentController extends Controller
{
public function index()
{
$payments = Payment::all();
return view('payments.index', compact('payments'));
}
public function create()
{
return view('payments.create');
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'Amount' => 'required|numeric',
'PaymentDate' => 'nullable|date',
'PaymentMethod' => 'nullable|max:50',
'Status' => 'nullable|max:20',
]);
Payment::create($request->all());
return redirect()->route('payments.index')->with('success', 'Payment created successfully.');
}
public function show(Payment $payment)
{
return view('payments.show', compact('payment'));
}
public function edit(Payment $payment)
{
return view('payments.edit', compact('payment'));
}
public function update(Request $request, Payment $payment)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'Amount' => 'required|numeric',
'PaymentDate' => 'nullable|date',
'PaymentMethod' => 'nullable|max:50',
'Status' => 'nullable|max:20',
]);
$payment->update($request->all());
return redirect()->route('payments.index')->with('success', 'Payment updated successfully.');
}
public function destroy(Payment $payment)
{
$payment->delete();
return redirect()->route('payments.index')->with('success', 'Payment deleted successfully.');
}
}
DocumentController
// app/Http/Controllers/DocumentController.php
namespace App\Http\Controllers;
use App\Models\Document;
use Illuminate\Http\Request;
class DocumentController extends Controller
{
public function index()
{
$documents = Document::all();
return view('documents.index', compact('documents'));
}
public function create()
{
return view('documents.create');
}
public function store(Request $request)
{
$request->validate([
'PropertyId' => 'required|exists:properties,PropertyId',
'DocumentType' => 'required|max:50',
'DocumentUrl' => 'required|url|max:255',
]);
Document::create($request->all());
return redirect()->route('documents.index')->with('success', 'Document created successfully.');
}
public function show(Document $document)
{
return view('documents.show', compact('document'));
}
public function edit(Document $document)
{
return view('documents.edit', compact('document'));
}
public function update(Request $request, Document $document)
{
$request->validate([
'PropertyId' => 'required|exists:properties,PropertyId',
'DocumentType' => 'required|max:50',
'DocumentUrl' => 'required|url|max:255',
]);
$document->update($request->all());
return redirect()->route('documents.index')->with('success', 'Document updated successfully.');
}
public function destroy(Document $document)
{
$document->delete();
return redirect()->route('documents.index')->with('success', 'Document deleted successfully.');
}
}
ReportController
// app/Http/Controllers/ReportController.php
namespace App\Http\Controllers;
use App\Models\Report;
use Illuminate\Http\Request;
class ReportController extends Controller
{
public function index()
{
$reports = Report::all();
return view('reports.index', compact('reports'));
}
public function create()
{
return view('reports.create');
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'ReportDate' => 'nullable|date',
'Description' => 'nullable',
]);
Report::create($request->all());
return redirect()->route('reports.index')->with('success', 'Report created successfully.');
}
public function show(Report $report)
{
return view('reports.show', compact('report'));
}
public function edit(Report $report)
{
return view('reports.edit', compact('report'));
}
public function update(Request $request, Report $report)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'PropertyId' => 'required|exists:properties,PropertyId',
'ReportDate' => 'nullable|date',
'Description' => 'nullable',
]);
$report->update($request->all());
return redirect()->route('reports.index')->with('success', 'Report updated successfully.');
}
public function destroy(Report $report)
{
$report->delete();
return redirect()->route('reports.index')->with('success', 'Report deleted successfully.');
}
}
MessageController
// app/Http/Controllers/MessageController.php
namespace App\Http\Controllers;
use App\Models\Message;
use Illuminate\Http\Request;
class MessageController extends Controller
{
public function index()
{
$messages = Message::all();
return view('messages.index', compact('messages'));
}
public function create()
{
return view('messages.create');
}
public function store(Request $request)
{
$request->validate([
'SenderId' => 'required|exists:users,User Id',
'ReceiverId' => 'required|exists:users,User Id',
'MessageText' => 'required',
]);
Message::create($request->all());
return redirect()->route('messages.index')->with('success', 'Message sent successfully.');
}
public function show(Message $message)
{
return view('messages.show', compact('message'));
}
public function edit(Message $message)
{
return view(' messages.edit', compact('message'));
}
public function update(Request $request, Message $message)
{
$request->validate([
'SenderId' => 'required|exists:users,User Id',
'ReceiverId' => 'required|exists:users,User Id',
'MessageText' => 'required',
]);
$message->update($request->all());
return redirect()->route('messages.index')->with('success', 'Message updated successfully.');
}
public function destroy(Message $message)
{
$message->delete();
return redirect()->route('messages.index')->with('success', 'Message deleted successfully.');
}
}
NotificationController
// app/Http/Controllers/NotificationController.php
namespace App\Http\Controllers;
use App\Models\Notification;
use Illuminate\Http\Request;
class NotificationController extends Controller
{
public function index()
{
$notifications = Notification::all();
return view('notifications.index', compact('notifications'));
}
public function create()
{
return view('notifications.create');
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required',
'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)
{
return view('notifications.edit', compact('notification'));
}
public function update(Request $request, Notification $notification)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required',
'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.');
}
}
CampaignController
// app/Http/Controllers/CampaignController.php
namespace App\Http\Controllers;
use App\Models\Campaign;
use Illuminate\Http\Request;
class CampaignController extends Controller
{
public function index()
{
$campaigns = Campaign::all();
return view('campaigns.index', compact('campaigns'));
}
public function create()
{
return view('campaigns.create');
}
public function store(Request $request)
{
$request->validate([
'CampaignName' => 'required|max:100',
'StartDate' => 'nullable|date',
'EndDate' => 'nullable|date',
'DiscountPercentage' => 'nullable|numeric',
]);
Campaign::create($request->all());
return redirect()->route('campaigns.index')->with('success', 'Campaign created successfully.');
}
public function show(Campaign $campaign)
{
return view('campaigns.show', compact('campaign'));
}
public function edit(Campaign $campaign)
{
return view('campaigns.edit', compact('campaign'));
}
public function update(Request $request, Campaign $campaign)
{
$request->validate([
'CampaignName' => 'required|max:100',
'StartDate' => 'nullable|date',
'EndDate' => 'nullable|date',
'DiscountPercentage' => 'nullable|numeric',
]);
$campaign->update($request->all());
return redirect()->route('campaigns.index')->with('success', 'Campaign updated successfully.');
}
public function destroy(Campaign $campaign)
{
$campaign->delete();
return redirect()->route('campaigns.index')->with('success', 'Campaign deleted successfully.');
}
}
FeedbackController
// app/Http/Controllers/FeedbackController.php
namespace App\Http\Controllers;
use App\Models\Feedback;
use Illuminate\Http\Request;
class FeedbackController extends Controller
{
public function index()
{
$feedbacks = Feedback::all();
return view('feedbacks.index', compact('feedbacks'));
}
public function create()
{
return view('feedbacks.create');
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Comments' => 'nullable',
'Rating' => 'required|integer|between:1,5',
]);
Feedback::create($request->all());
return redirect()->route('feedbacks.index ')->with('success', 'Feedback created successfully.');
}
public function show(Feedback $feedback)
{
return view('feedbacks.show', compact('feedback'));
}
public function edit(Feedback $feedback)
{
return view('feedbacks.edit', compact('feedback'));
}
public function update(Request $request, Feedback $feedback)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Comments' => 'nullable',
'Rating' => 'required|integer|between:1,5',
]);
$feedback->update($request->all());
return redirect()->route('feedbacks.index')->with('success', 'Feedback updated successfully.');
}
public function destroy(Feedback $feedback)
{
$feedback->delete();
return redirect()->route('feedbacks.index')->with('success', 'Feedback deleted successfully.');
}
}
This completes the CRUD operations for each model in your Laravel application. Each controller is set up to handle the necessary requests and return the appropriate views. You can create corresponding views for each operation to complete the functionality.
Creating view files for each controller using Bootstrap 5 involves creating a set of Blade templates in Laravel. Below, I will provide a basic structure for the views corresponding to each controller. Each view will include a layout file that uses Bootstrap 5 for styling.
Step 1: Create Layout File
First, create a layout file that will be used by all views. This file will include Bootstrap 5 and a navigation bar.
Layout File
Create a file named app.blade.php in the resources/views/layouts directory.
<!-- 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')</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">My App</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('properties.index') }}">Properties</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('media.index') }}">Media</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('appointments.index') }}">Appointments</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('payments.index') }}">Payments</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('documents.index') }}">Documents</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('reports.index') }}">Reports</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('messages.index') }}">Messages</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('campaigns.index') }}">Campaigns</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('feedbacks.index') }}">Feedbacks</a></li>
</ul>
</div>
</div>
</nav>
<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 Controller
Now, create views for each controller. Below are examples of the views for the User Controller. You can replicate this structure for other controllers by changing the model name and relevant fields.
User Views
Index View
<!-- resources/views/users/index.blade.php -->
@extends('layouts.app')
@section('title', 'Users')
@section('content')
<h1>Users</h1>
<a href="{{ route('users.create') }}" class="btn btn-primary mb-3">Create User</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User ID</th>
<th>Username</th>
<th>Email</th>
<th>Phone</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>{{ $user->Phone }}</td>
<td>
<a href="{{ route('users.show', $user) }}" class="btn btn-info">View</a>
<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
Create View
<!-- 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="Phone" class="form-label">Phone</label>
<input type="text" class="form-control" id="Phone" name="Phone">
</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
Show View
<!-- resources/views/users/show.blade.php -->
@extends('layouts.app')
@section('title', 'User Details')
@section('content')
<h1>User Details</h1>
<p><strong>Username:</strong> {{ $user->Username }}</p>
<p><strong>Email:</strong> {{ $user->Email }}</p>
<p><strong>Phone:</strong> {{ $user->Phone }}</p>
<p><strong>Role:</strong> {{ $user->role->RoleName ?? 'N/A' }}</p>
<a href="{{ route('users.edit', $user) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back to Users</a>
@endsection
Edit View
<!-- resources/views/users/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit User')
@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="Phone" class="form-label">Phone</label>
<input type="text" class="form-control" id="Phone" name="Phone" value="{{ $user->Phone }}">
</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
Step 3: Replicate for Other Controllers
You can replicate the above structure for the other controllers (Role, Property, Media, etc.) by changing the model name and relevant fields in the views. Ensure to create the corresponding index, create, show, edit views for each model.
This will give you a complete set of views styled with Bootstrap 5 for your Laravel application.
Role Views
Index View
<!-- resources/views/roles/index.blade.php -->
@extends('layouts.app')
@section('title', 'Roles')
@section('content')
<h1>Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<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.show', $role) }}" class="btn btn-info">View</a>
<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
Create View
<!-- resources/views/roles/create.blade.php -->
@extends('layouts.app')
@section('title', 'Create Role')
@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
Show View
<!-- resources/views/roles/show.blade.php -->
@extends('layouts.app')
@section('title', 'Role Details')
@section('content')
<h1>Role Details</h1>
<p><strong>Role Name:</strong> {{ $role->RoleName }}</p>
<a href="{{ route('roles.edit', $role) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back to Roles</a>
@endsection
Edit View
<!-- resources/views/roles/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Role')
@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
Property Views
Index View
<!-- resources/views/properties/index.blade.php -->
@extends('layouts.app')
@section('title', 'Properties')
@section('content')
<h1>Properties</h1>
<a href="{{ route('properties.create') }}" class="btn btn-primary mb-3">Create Property</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Property ID</th>
<th>Title</th>
<th>City</th>
<th>Price</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($properties as $property)
<tr>
<td>{{ $property->PropertyId }}</td>
<td>{{ $property->Title }}</td>
<td>{{ $property->City }}</td>
<td>${{ number_format($property->Price, 2) }}</td>
<td>
<a href="{{ route('properties.show', $property) }}" class="btn btn-info">View</a>
<a href="{{ route('properties.edit', $property) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('properties.destroy', $property) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/properties/create.blade.php -->
@extends('layouts.app')
@section('title', 'Create Property')
@section('content')
<h1>Create Property</h1>
<form action="{{ route('properties.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="Address" class="form-label">Address</label>
<input type="text" class="form-control" id="Address" name="Address" required>
</div>
<div class="mb-3">
<label for="City" class="form-label">City</label>
<input type="text" class="form-control" id="City" name="City" required>
</div>
<div class="mb-3">
<label for="State" class="form-label">State</label>
<input type="text" class="form-control" id="State" name="State" required>
</div>
<div class="mb-3">
<label for="ZipCode" class="form-label">Zip Code</label>
<input type="text" class="form-control" id="ZipCode" name="ZipCode">
</div>
<div class="mb-3">
<label for="Price" class="form-label">Price</label>
<input type="number" class="form-control" id="Price" name="Price" required>
</div>
<div class="mb-3">
<label for="PropertyType" class="form-label">Property Type</label>
<input type="text" class="form-control" id="PropertyType" name="PropertyType">
</div>
<div class="mb-3">
<label for="Status" class="form-label">Status</label>
<input type="text" class="form-control" id="Status" name="Status">
</div>
<button type="submit" class="btn btn-primary">Create Property</button>
</form>
@endsection
Show View
<!-- resources/views/properties/show.blade.php -->
@extends('layouts.app')
@section('title', 'Property Details')
@section('content')
<h1>Property Details</h1>
<p><strong>Title:</strong> {{ $property->Title }}</p>
<p><strong>Description:</strong> {{ $property->Description }}</p>
<p><strong>Address:</strong> {{ $property->Address }}</p>
<p><strong>City:</strong> {{ $property->City }}</p>
<p><strong>State:</strong> {{ $property->State }}</p>
<p><strong>Zip Code:</strong> {{ $property->ZipCode }}</p>
<p><strong>Price:</strong> ${{ number_format($property->Price, 2) }}</p>
<p><strong>Property Type:</strong> {{ $property->PropertyType }}</p>
<p><strong>Status:</strong> {{ $property->Status }}</p>
<a href="{{ route('properties.edit', $property) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('properties.index') }}" class="btn btn-secondary">Back to Properties</a>
@endsection
Edit View
<!-- resources/views/properties/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Property')
@section('content')
<h1>Edit Property</h1>
<form action="{{ route('properties.update', $property) }}" 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="{{ $property->Title }}" required>
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description">{{ $property->Description }}</textarea>
</div>
<div class="mb-3">
<label for="Address" class="form-label">Address</label>
<input type="text" class="form-control" id="Address" name="Address" value="{{ $property->Address }}" required>
</div>
<div class="mb-3">
<label for="City" class="form-label">City</label>
<input type="text" class="form-control" id="City" name="City" value="{{ $property->City }}" required>
</div>
<div class="mb-3">
<label for="State" class="form-label">State</label>
<input type="text" class="form-control" id="State" name="State" value="{{ $property->State }}" required>
</div>
<div class="mb-3">
<label for="ZipCode" class="form-label">Zip Code</label>
<input type="text" class="form-control" id="ZipCode" name="ZipCode" value="{{ $property->ZipCode }}">
</div>
<div class="mb-3">
<label for="Price" class="form-label">Price</label>
<input type="number" class="form-control" id="Price" name="Price" value="{{ $property->Price }}" required>
</div>
<div class="mb-3">
<label for="PropertyType" class="form-label">Property Type</label>
<input type="text" class="form-control" id="PropertyType" name="PropertyType" value="{{ $property->PropertyType }}">
</div>
<div class="mb-3">
<label for="Status" class="form-label">Status</label>
<input type="text" class="form-control" id="Status" name="Status" value="{{ $property->Status }}">
</div>
<button type="submit" class="btn btn-primary">Update Property</button>
</form>
@endsection
Step 4: Continue for Other Controllers
You can follow the same pattern for the remaining controllers (Media, Appointment, Payment, Document, Report, Message, Notification, Campaign, Feedback) by creating index, create, show, edit views for each model. Ensure to adjust the fields and routes accordingly based on the specific model's attributes.
This will provide a comprehensive set of views for your Laravel application, all styled with Bootstrap 5, ensuring a consistent and responsive user interface.
Below are the remaining views for the controllers: Media, Appointment, Payment, Document, Report, Message, Notification, Campaign, and Feedback.
Each set of views will include the index, create, show, and edit views.
Media Views
Index View
<!-- resources/views/media/index.blade.php -->
@extends('layouts.app')
@section('title', 'Media')
@section('content')
<h1>Media</h1>
<a href="{{ route('media.create') }}" class="btn btn-primary mb-3">Upload Media</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Media ID</th>
<th>Property ID</th>
<th>Media Type</th>
<th>Media URL</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($media as $item)
<tr>
<td>{{ $item->MediaId }}</td>
<td>{{ $item->PropertyId }}</td>
<td>{{ $item->MediaType }}</td>
<td><a href="{{ $item->MediaUrl }}" target="_blank">{{ $item->MediaUrl }}</a></td>
<td>
<a href="{{ route('media.show', $item) }}" class="btn btn-info">View</a>
<a href="{{ route('media.edit', $item) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('media.destroy', $item) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/media/create.blade.php -->
@extends('layouts.app')
@section('title', 'Upload Media')
@section('content')
<h1>Upload Media</h1>
<form action="{{ route('media.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" required>
</div>
<div class="mb-3">
<label for="MediaType" class="form-label">Media Type</label>
<input type="text" class="form-control" id="MediaType" name="MediaType" required>
</div>
<div class="mb-3">
<label for="MediaUrl" class="form-label">Media URL</label>
<input type="url" class="form-control" id="MediaUrl" name="MediaUrl" required>
</div>
<button type="submit" class="btn btn-primary">Upload Media</button>
</form>
@endsection
Show View
<!-- resources/views/media/show.blade.php -->
@extends('layouts.app')
@section('title', 'Media Details')
@section('content')
<h1>Media Details</h1>
<p><strong>Media ID:</strong> {{ $media->MediaId }}</p>
<p><strong>Property ID:</strong> {{ $media->PropertyId }}</p>
<p><strong>Media Type:</strong> {{ $media->MediaType }}</p>
<p><strong>Media URL:</strong> <a href="{{ $media->MediaUrl }}" target="_blank">{{ $media->MediaUrl }}</a></p>
<a href="{{ route('media.edit', $media) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('media.index') }}" class="btn btn-secondary">Back to Media</a>
@endsection
Edit View
<!-- resources/views/media/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Media')
@section('content')
<h1>Edit Media</h1>
<form action="{{ route('media.update', $media) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" value="{{ $media->PropertyId }}" required>
</div>
<div class="mb-3">
<label for="MediaType" class="form-label">Media Type</label>
<input type="text" class="form-control" id="MediaType" name="MediaType" value="{{ $media->MediaType }}" required>
</div>
<div class="mb-3">
<label for="MediaUrl" class="form-label">Media URL</label>
<input type="url" class="form-control" id="MediaUrl" name="MediaUrl" value="{{ $media->MediaUrl }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Media</button>
</form>
@endsection
Appointment Views
Index View
<!-- resources/views/appointments/index.blade.php -->
@extends('layouts.app')
@section('title', 'Appointments')
@section('content')
<h1>Appointments</h1>
<a href="{{ route('appointments.create') }}" class="btn btn-primary mb-3">Schedule Appointment</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Appointment ID</th>
<th>User ID</th>
<th>Property ID</th>
<th>Appointment Date</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($appointments as $appointment)
<tr>
<td>{{ $appointment->AppointmentId }}</td>
<td>{{ $appointment->User Id }}</td>
<td>{{ $appointment->PropertyId }}</td>
<td>{{ $appointment->AppointmentDate }}</td>
<td>{{ $appointment->Status }}</td>
<td>
< a href="{{ route('appointments.show', $appointment) }}" class="btn btn-info">View</a>
<a href="{{ route('appointments.edit', $appointment) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('appointments.destroy', $appointment) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Cancel</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/appointments/create.blade.php -->
@extends('layouts.app')
@section('title', 'Schedule Appointment')
@section('content')
<h1>Schedule Appointment</h1>
<form action="{{ route('appointments.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User ID</label>
<input type="number" class="form-control" id="User Id" name="User Id" required>
</div>
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" required>
</div>
<div class="mb-3">
<label for="AppointmentDate" class="form-label">Appointment Date</label>
<input type="datetime-local" class="form-control" id="AppointmentDate" name="AppointmentDate" required>
</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">Schedule Appointment</button>
</form>
@endsection
Show View
<!-- resources/views/appointments/show.blade.php -->
@extends('layouts.app')
@section('title', 'Appointment Details')
@section('content')
<h1>Appointment Details</h1>
<p><strong>Appointment ID:</strong> {{ $appointment->AppointmentId }}</p>
<p><strong>User ID:</strong> {{ $appointment->User Id }}</p>
<p><strong>Property ID:</strong> {{ $appointment->PropertyId }}</p>
<p><strong>Appointment Date:</strong> {{ $appointment->AppointmentDate }}</p>
<p><strong>Status:</strong> {{ $appointment->Status }}</p>
<a href="{{ route('appointments.edit', $appointment) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('appointments.index') }}" class="btn btn-secondary">Back to Appointments</a>
@endsection
Edit View
<!-- resources/views/appointments/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Appointment')
@section('content')
<h1>Edit Appointment</h1>
<form action="{{ route('appointments.update', $appointment) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User ID</label>
<input type="number" class="form-control" id="User Id" name="User Id" value="{{ $appointment->User Id }}" required>
</div>
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" value="{{ $appointment->PropertyId }}" required>
</div>
<div class="mb-3">
<label for="AppointmentDate" class="form-label">Appointment Date</label>
<input type="datetime-local" class="form-control" id="AppointmentDate" name="AppointmentDate" value="{{ \Carbon\Carbon::parse($appointment->AppointmentDate)->format('Y-m-d\TH:i') }}" required>
</div>
<div class="mb-3">
<label for="Status" class="form-label">Status</label>
<input type="text" class="form-control" id="Status" name="Status" value="{{ $appointment->Status }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Appointment</button>
</form>
@endsection
Payment Views
Index View
<!-- resources/views/payments/index.blade.php -->
@extends('layouts.app')
@section('title', ' Payments')
@section('content')
<h1>Payments</h1>
<a href="{{ route('payments.create') }}" class="btn btn-primary mb-3">Add Payment</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Payment ID</th>
<th>User ID</th>
<th>Property ID</th>
<th>Amount</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($payments as $payment)
<tr>
<td>{{ $payment->PaymentId }}</td>
<td>{{ $payment->User Id }}</td>
<td>{{ $payment->PropertyId }}</td>
<td>${{ number_format($payment->Amount, 2) }}</td>
<td>{{ $payment->Date }}</td>
<td>
<a href="{{ route('payments.show', $payment) }}" class="btn btn-info">View</a>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/payments/create.blade.php -->
@extends('layouts.app')
@section('title', 'Add Payment')
@section('content')
<h1>Add 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="number" class="form-control" id="User Id" name="User Id" required>
</div>
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" required>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" step="0.01" required>
</div>
<div class="mb-3">
<label for="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" required>
</div>
<button type="submit" class="btn btn-primary">Add Payment</button>
</form>
@endsection
Show View
<!-- resources/views/payments/show.blade.php -->
@extends('layouts.app')
@section('title', 'Payment Details')
@section('content')
<h1>Payment Details</h1>
<p><strong>Payment ID:</strong> {{ $payment->PaymentId }}</p>
<p><strong>User ID:</strong> {{ $payment->User Id }}</p>
<p><strong>Property ID:</strong> {{ $payment->PropertyId }}</p>
<p><strong>Amount:</strong> ${{ number_format($payment->Amount, 2) }}</p>
<p><strong>Date:</strong> {{ $payment->Date }}</p>
<a href="{{ route('payments.edit', $payment) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('payments.index') }}" class="btn btn-secondary">Back to Payments</a>
@endsection
Edit View
<!-- resources/views/payments/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Payment')
@section('content')
<h1>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="number" class="form-control" id="User Id" name="User Id" value="{{ $payment->User Id }}" required>
</div>
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" value="{{ $payment->PropertyId }}" required>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" value="{{ $payment->Amount }}" step="0.01" required>
</div>
<div class="mb-3">
<label for="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" value="{{ $payment->Date }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Payment</button>
</form>
@endsection
Document Views
Index View
<!-- resources/views/documents/index.blade.php -->
@extends('layouts.app')
@section('title', 'Documents')
@section('content')
<h1>Documents</h1>
<a href="{{ route('documents.create') }}" class="btn btn-primary mb-3">Upload Document</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Document ID</th>
<th>Property ID</th>
<th>Document Type</th>
<th>Document URL</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($documents as $document)
<tr>
<td>{{ $document->DocumentId }}</td>
<td>{{ $document->PropertyId }}</td>
<td>{{ $document->DocumentType }}</td>
<td><a href="{{ $document->DocumentUrl }}" target="_blank">{{ $document->DocumentUrl }}</a></td>
<td>
<a href="{{ route('documents.show', $document) }}" class="btn btn-info">View</a>
<a href="{{ route('documents.edit', $document) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('documents.destroy', $document) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/documents/create.blade.php -->
@extends('layouts.app')
@section('title', 'Upload Document')
@section('content')
<h1>Upload Document</h1>
<form action="{{ route('documents.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" required>
</div>
<div class="mb-3">
<label for="DocumentType" class="form-label">Document Type</label>
<input type="text" class="form-control" id="DocumentType" name="DocumentType" required>
</div>
<div class="mb-3">
<label for="DocumentUrl" class="form-label">Document URL</label>
<input type="url" class="form-control" id="DocumentUrl" name="DocumentUrl" required>
</div>
<button type="submit" class="btn btn-primary">Upload Document</button>
</form>
@endsection
Show View
<!-- resources/views/documents/show.blade.php -->
@extends('layouts.app')
@section('title', 'Document Details')
@section('content')
<h1>Document Details</h1>
<p><strong>Document ID:</strong> {{ $document->DocumentId }}</p>
<p><strong>Property ID:</strong> {{ $document->PropertyId }}</p>
<p><strong>Document Type:</strong> {{ $document->DocumentType }}</p>
<p><strong>Document URL:</strong> <a href="{{ $document->DocumentUrl }}" target="_blank">{{ $document->DocumentUrl }}</a></p>
<a href="{{ route('documents.edit', $document) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('documents.index') }}" class="btn btn-secondary">Back to Documents</a>
@endsection
Edit View
<!-- resources/views /documents/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Document')
@section('content')
<h1>Edit Document</h1>
<form action="{{ route('documents.update', $document) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="PropertyId" class="form-label">Property ID</label>
<input type="number" class="form-control" id="PropertyId" name="PropertyId" value="{{ $document->PropertyId }}" required>
</div>
<div class="mb-3">
<label for="DocumentType" class="form-label">Document Type</label>
<input type="text" class="form-control" id="DocumentType" name="DocumentType" value="{{ $document->DocumentType }}" required>
</div>
<div class="mb-3">
<label for="DocumentUrl" class="form-label">Document URL</label>
<input type="url" class="form-control" id="DocumentUrl" name="DocumentUrl" value="{{ $document->DocumentUrl }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Document</button>
</form>
@endsection
Report Views
Index View
<!-- resources/views/reports/index.blade.php -->
@extends('layouts.app')
@section('title', 'Reports')
@section('content')
<h1>Reports</h1>
<a href="{{ route('reports.create') }}" class="btn btn-primary mb-3">Generate Report</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Report ID</th>
<th>Title</th>
<th>Date Generated</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($reports as $report)
<tr>
<td>{{ $report->ReportId }}</td>
<td>{{ $report->Title }}</td>
<td>{{ $report->DateGenerated }}</td>
<td>
<a href="{{ route('reports.show', $report) }}" class="btn btn-info">View</a>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/reports/create.blade.php -->
@extends('layouts.app')
@section('title', 'Generate Report')
@section('content')
<h1>Generate Report</h1>
<form action="{{ route('reports.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="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Generate Report</button>
</form>
@endsection
Show View
<!-- resources/views/reports/show.blade.php -->
@extends('layouts.app')
@section('title', 'Report Details')
@section('content')
<h1>Report Details</h1>
<p><strong>Report ID:</strong> {{ $report->ReportId }}</p>
<p><strong>Title:</strong> {{ $report->Title }}</p>
<p><strong>Date Generated:</strong> {{ $report->DateGenerated }}</p>
<p><strong>Content:</strong> {{ $report->Content }}</p>
<a href="{{ route('reports.edit', $report) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back to Reports</a>
@endsection
Edit View
<!-- resources/views/reports/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Report')
@section('content')
<h1>Edit Report</ h1>
<form action="{{ route('reports.update', $report) }}" 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="{{ $report->Title }}" required>
</div>
<div class="mb-3">
<label for="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required>{{ $report->Content }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Report</button>
</form>
@endsection
Message Views
Index View
<!-- resources/views/messages/index.blade.php -->
@extends('layouts.app')
@section('title', 'Messages')
@section('content')
<h1>Messages</h1>
<a href="{{ route('messages.create') }}" class="btn btn-primary mb-3">Send Message</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Message ID</th>
<th>Sender ID</th>
<th>Receiver ID</th>
<th>Content</th>
<th>Date Sent</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($messages as $message)
<tr>
<td>{{ $message->MessageId }}</td>
<td>{{ $message->SenderId }}</td>
<td>{{ $message->ReceiverId }}</td>
<td>{{ $message->Content }}</td>
<td>{{ $message->DateSent }}</td>
<td>
<a href="{{ route('messages.show', $message) }}" class="btn btn-info">View</a>
<form action="{{ route('messages.destroy', $message) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/messages/create.blade.php -->
@extends('layouts.app')
@section('title', 'Send Message')
@section('content')
<h1>Send Message</h1>
<form action="{{ route('messages.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="SenderId" class="form-label">Sender ID</label>
<input type="number" class="form-control" id="SenderId" name="SenderId" required>
</div>
<div class="mb-3">
<label for="ReceiverId" class="form-label">Receiver ID</label>
<input type="number" class="form-control" id="ReceiverId" name="ReceiverId" required>
</div>
<div class="mb-3">
<label for="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
@endsection
Show View
<!-- resources/views/messages/show.blade.php -->
@extends('layouts.app')
@section('title', 'Message Details')
@section('content')
<h1>Message Details</h1>
<p><strong>Message ID:</strong> {{ $message->MessageId }}</p>
<p><strong>Sender ID:</strong> {{ $message->SenderId }}</p>
<p><strong>Receiver ID:</strong> {{ $message->ReceiverId }}</p>
<p><strong>Content:</strong> {{ $message->Content }}</p>
<p><strong>Date Sent:</strong> {{ $message->DateSent }}</p>
<a href="{{ route('messages.index') }}" class="btn btn-secondary">Back to Messages</a>
@endsection
Edit View
<!-- resources/views/messages/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Message')
@section('content')
<h1>Edit Message</h1>
<form action="{{ route('messages.update', $message) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="SenderId" class="form-label">Sender ID</label>
<input type="number" class="form-control" id="SenderId" name="SenderId" value="{{ $message->SenderId }}" required>
</div>
<div class="mb-3">
<label for="ReceiverId" class="form-label">Receiver ID</label>
<input type="number" class="form-control" id="ReceiverId" name="ReceiverId" value="{{ $message->ReceiverId }}" required>
</div>
<div class="mb-3">
<label for="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required>{{ $message->Content }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Message</button>
</form>
@endsection
Notification Views
Index View
<!-- resources/views/notifications/index.blade.php -->
@extends('layouts.app')
@section('title', 'Notifications')
@section('content')
<h1>Notifications</h1>
<a href="{{ route('notifications.create') }}" class="btn btn-primary mb-3">Create Notification</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Notification ID</th>
<th>User ID</th>
<th>Message</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($notifications as $notification)
<tr>
<td>{{ $notification->NotificationId }}</td>
<td>{{ $notification->User Id }}</td>
<td>{{ $notification->Message }}</td>
<td>{{ $notification->Date }}</td>
<td>
<a href="{{ route('notifications.show', $notification) }}" class="btn btn-info">View</a>
<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
Create View
<!-- resources/views/notifications/create.blade.php -->
@extends('layouts.app')
@section('title', 'Create Notification')
@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 ID</label>
<input type="number" class="form-control" id="User Id" name="User Id" 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="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" required>
</div>
<button type="submit" class="btn btn-primary">Create Notification</button>
</form>
@endsection
Show View
<!-- resources/views/notifications/show.blade.php -->
@extends('layouts.app')
@section('title', 'Notification Details')
@section('content')
<h1>Notification Details</h1>
<p><strong>Notification ID:</strong> {{ $notification->NotificationId }}</p>
<p><strong>User ID:</strong> {{ $notification->User Id }}</p>
<p><strong>Message:</strong> {{ $notification->Message }}</p>
<p><strong>Date:</strong> {{ $notification->Date }}</p>
<a href="{{ route('notifications.edit', $notification) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back to Notifications</a>
@endsection
Edit View
<!-- resources/views/notifications/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Notification')
@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 ID</label>
<input type="number" class="form-control" id="User Id" name="User Id" value="{{ $notification->User Id }}" required>
</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="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" value="{{ $notification->Date }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Notification</button>
</form>
@endsection
Campaign Views
Index View
<!-- resources/views/campaigns/index.blade.php -->
@extends('layouts.app')
@section('title', 'Campaigns')
@section('content')
<h1>Campaigns</h1>
<a href="{{ route('campaigns.create') }}" class="btn btn-primary mb-3">Create Campaign</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Campaign ID</th>
<th>Title</th>
<th>Start Date</th>
<th>End Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($campaigns as $campaign)
<tr>
<td>{{ $campaign->CampaignId }}</td>
<td>{{ $campaign->Title }}</td>
<td>{{ $campaign->StartDate }}</td>
<td>{{ $campaign->EndDate }}</td>
<td>
<a href="{{ route('campaigns.show', $campaign) }}" class="btn btn-info">View</a>
<a href="{{ route('campaigns.edit', $campaign) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('campaigns.destroy', $campaign) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/campaigns/create.blade.php -->
@extends('layouts.app')
@section('title', 'Create Campaign')
@section('content')
<h1>Create Campaign</h1>
<form action="{{ route('campaigns.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="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 Campaign</button>
</form>
@endsection
Show View
<!-- resources/views/campaigns/show.blade.php -->
@extends('layouts.app')
@section('title', 'Campaign Details')
@section('content')
<h1>Campaign Details</h1>
<p><strong>Campaign ID:</strong> {{ $campaign->CampaignId }}</p>
<p><strong>Title:</strong> {{ $campaign->Title }}</p>
<p><strong>Start Date:</strong> {{ $campaign->StartDate }}</p>
<p><strong>End Date:</strong> {{ $campaign->EndDate }}</p>
<a href="{{ route('campaigns.edit', $campaign) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('campaigns.index') }}" class=" btn btn-secondary">Back to Campaigns</a>
@endsection
Edit View
<!-- resources/views/campaigns/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Campaign')
@section('content')
<h1>Edit Campaign</h1>
<form action="{{ route('campaigns.update', $campaign) }}" 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="{{ $campaign->Title }}" required>
</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="{{ $campaign->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="{{ $campaign->EndDate }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Campaign</button>
</form>
@endsection
Feedback Views
Index View
<!-- resources/views/feedbacks/index.blade.php -->
@extends('layouts.app')
@section('title', 'Feedbacks')
@section('content')
<h1>Feedbacks</h1>
<a href="{{ route('feedbacks.create') }}" class="btn btn-primary mb-3">Add Feedback</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Feedback ID</th>
<th>User ID</th>
<th>Content</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($feedbacks as $feedback)
<tr>
<td>{{ $feedback->FeedbackId }}</td>
<td>{{ $feedback->User Id }}</td>
<td>{{ $feedback->Content }}</td>
<td>{{ $feedback->Date }}</td>
<td>
<a href="{{ route('feedbacks.show', $feedback) }}" class="btn btn-info">View</a>
<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>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
Create View
<!-- resources/views/feedbacks/create.blade.php -->
@extends('layouts.app')
@section('title', 'Add Feedback')
@section('content')
<h1>Add 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="number" class="form-control" id="User Id" name="User Id" required>
</div>
<div class="mb-3">
<label for="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required></textarea>
</div>
<div class="mb-3">
<label for="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" required>
</div>
<button type="submit" class="btn btn-primary">Add Feedback</button>
</form>
@endsection
Show View
<!-- resources/views/feedbacks/show.blade.php -->
@extends('layouts.app')
@section('title', 'Feedback Details')
@section('content')
<h1>Feedback Details</h1>
<p><strong>Feedback ID:</strong> {{ $feedback->FeedbackId }}</p>
<p><strong>User ID:</strong> {{ $feedback->User Id }}</p>
<p><strong>Content:</strong> {{ $feedback->Content }}</p>
<p><strong >Feedback Date:</strong> {{ $feedback->Date }}</p>
<a href="{{ route('feedbacks.edit', $feedback) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back to Feedbacks</a>
@endsection
Edit View
<!-- resources/views/feedbacks/edit.blade.php -->
@extends('layouts.app')
@section('title', 'Edit Feedback')
@section('content')
<h1>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="number" class="form-control" id="User Id" name="User Id" value="{{ $feedback->User Id }}" required>
</div>
<div class="mb-3">
<label for="Content" class="form-label">Content</label>
<textarea class="form-control" id="Content" name="Content" required>{{ $feedback->Content }}</textarea>
</div>
<div class="mb-3">
<label for="Date" class="form-label">Date</label>
<input type="date" class="form-control" id="Date" name="Date" value="{{ $feedback->Date }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Feedback</button>
</form>
@endsection
This completes the view files for all controllers based on Bootstrap 5.
Each set of views includes the necessary CRUD operations, styled appropriately for a consistent user experience.
Creating a layout file in Laravel
Creating a layout file in Laravel allows you to define a common structure for your views, which can help maintain consistency across your application. Below, I will provide a basic layout file using Bootstrap 5, which you can use as a foundation for your Laravel application.
Step 1: Create the Layout File
Create the Layout Directory: If you haven't already, create a directory named layouts inside the resources/views directory.
Create the Layout File: Create a file named app.blade.php in the resources/views/layouts directory.
Layout File: app.blade.php
<!-- 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')</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="#">My App</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('properties.index') }}">Properties</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('media.index') }}">Media</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('appointments.index') }}">Appointments</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('payments.index') }}">Payments</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('documents.index') }}">Documents</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('reports.index') }}">Reports</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('messages.index') }}">Messages</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('campaigns.index') }}">Campaigns</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('feedbacks.index') }}">Feedbacks</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 My App
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
@extends('layouts.app')
@section('title', 'Page Title')
@section('content')
<h1>Your Content Here</h1>
<p>This is where your page content goes.</p>
@endsection
This structure will ensure that all your views have a consistent look and feel, making it easier to manage your application's UI. You can customize the layout further by adding more styles, scripts, or components as needed.
Creating a dashboard page in a Laravel application
Creating a dashboard page in a Laravel application involves aggregating data from various models and displaying it in a user-friendly format. Below, I will guide you through creating a dashboard view that consolidates data related to your project, such as the number of users, roles, properties, media items, appointments, payments, documents, reports, messages, notifications, campaigns, and feedbacks.
Step 1: Create a Dashboard Route
First, you need to create a route for the dashboard in your web.php file.
// routes/web.php
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 Artisan command to generate the controller.
php artisan make:controller DashboardController
Then, implement the index method to fetch the necessary data.
// app/Http/Controllers/DashboardController.php
namespace App\Http\Controllers;
use App\Models\User;
use App\Models\Role;
use App\Models\Property;
use App\Models\Media;
use App\Models\Appointment;
use App\Models\Payment;
use App\Models\Document;
use App\Models\Report;
use App\Models\Message;
use App\Models\Notification;
use App\Models\Campaign;
use App\Models\Feedback;
class DashboardController extends Controller
{
public function index()
{
$data = [
'userCount' => User::count(),
'roleCount' => Role::count(),
'propertyCount' => Property::count(),
'mediaCount' => Media::count(),
'appointmentCount' => Appointment::count(),
'paymentCount' => Payment::count(),
'documentCount' => Document::count(),
'reportCount' => Report::count(),
'messageCount' => Message::count(),
'notificationCount' => Notification::count(),
'campaignCount' => Campaign::count(),
'feedbackCount' => Feedback::count(),
];
return view('dashboard.index', compact('data'));
}
}
Step 3: Create the Dashboard View
Now, create a view file for the dashboard. Create a new directory named dashboard in the resources/views directory, and then create a file named index.blade.php.
<!-- 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">Users</div>
<div class="card-body">
<h5 class="card-title">{{ $data['userCount'] }}</h5>
<p class="card-text">Total number of users.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Roles</div>
<div class="card-body">
<h5 class="card-title">{{ $data['roleCount'] }}</h5>
<p class="card-text">Total number of roles.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Properties</div>
<div class="card-body">
<h5 class="card-title">{{ $data['propertyCount'] }}</h5>
<p class="card-text">Total number of properties.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Media</div>
<div class="card-body">
<h5 class="card-title">{{ $data['mediaCount'] }}</h5>
<p class="card-text">Total media items uploaded.</p>
</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">Appointments</div>
<div class="card-body">
<h5 class="card-title">{{ $data['appointmentCount'] }}</h5>
<p class="card-text">Total scheduled appointments.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-secondary mb-3">
<div class="card-header">Payments</div>
<div class="card-body">
<h5 class="card-title">{{ $data['paymentCount'] }}</h5>
<p class="card-text">Total payments made.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-light mb-3">
<div class="card-header">Documents</div>
<div class="card-body">
<h5 class="card-title">{{ $data['documentCount'] }}</h5>
<p class="card-text">Total documents uploaded.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-dark mb-3">
<div class="card-header">Reports</div>
<div class="card-body">
<h5 class="card-title">{{ $data['reportCount'] }}</h5>
<p class="card-text">Total reports generated.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-primary mb-3">
<div class="card-header">Messages</div>
<div class="card-body">
<h5 class="card-title">{{ $data['messageCount'] }}</h5>
<p class="card-text">Total messages sent.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Notifications</div>
<div class="card-body">
<h 5 class="card-title">{{ $data['notificationCount'] }}</h5>
<p class="card-text">Total notifications received.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Campaigns</div>
<div class="card-body">
<h5 class="card-title">{{ $data['campaignCount'] }}</h5>
<p class="card-text">Total campaigns launched.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Feedbacks</div>
<div class="card-body">
<h5 class="card-title">{{ $data['feedbackCount'] }}</h5>
<p class="card-text">Total feedbacks received.</p>
</div>
</div>
</div>
</div>
@endsection
Step 4: Accessing the Dashboard
Now that you have set up the route, controller, and view for the dashboard, you can access it by navigating to /dashboard in your web browser. This will display a consolidated view of all the relevant data related to your project, presented in a visually appealing card format.
Summary
This dashboard provides a quick overview of key metrics in your application, allowing users to easily monitor the status of various components. You can further enhance this dashboard by adding charts, graphs, or additional data visualizations using libraries like Chart.js or D3.js, depending on your requirements.