Project Introduction
The Health Monitoring Wearable project is an innovative initiative aimed at developing a wearable device that continuously tracks and monitors various health metrics of users. With the increasing focus on personal health and wellness, this project seeks to provide individuals with real-time insights into their physical condition, enabling them to make informed decisions about their health. The wearable device will be designed to monitor vital signs such as heart rate, blood pressure, oxygen saturation, and physical activity levels.
The device will be equipped with advanced sensors and connectivity features, allowing users to sync their health data with a mobile application for comprehensive analysis and reporting. Key functionalities will include personalized health recommendations, alerts for abnormal readings, and integration with healthcare providers for remote monitoring. By empowering users to take charge of their health, the Health Monitoring Wearable project aims to promote proactive health management and improve overall well-being.
Project Objectives
- To develop a user-friendly wearable device that accurately tracks vital health metrics.
- To implement advanced sensors for real-time monitoring of heart rate, blood pressure, and activity levels.
- To create a mobile application that syncs with the wearable device for data visualization and analysis.
- To provide personalized health insights and recommendations based on collected data.
- To enable alerts and notifications for abnormal health readings to ensure timely intervention.
- To facilitate integration with healthcare providers for remote patient monitoring and support.
- To ensure data security and privacy for all user health information.
- To promote user engagement through features like goal setting and health challenges.
Project Modules
User Management Module
- User Registration/Login: Allow users to create accounts and log in securely, often with options for social media or email authentication.
- Profile Management: Enable users to manage their profiles, including personal information, health goals, and preferences.
- Multi-User Support: Allow multiple users to manage their health data under a single account (e.g., family or caregiver accounts).
Device Management Module
- Device Pairing: Facilitate the pairing of wearable devices with the mobile app or web platform via Bluetooth or Wi-Fi.
- Device Configuration: Allow users to configure device settings, such as measurement intervals and notification preferences.
- Firmware Updates: Manage firmware updates for wearable devices to ensure they operate with the latest features and security patches.
Data Collection Module
- Real-Time Monitoring: Collect health data in real-time from wearable sensors, including heart rate, steps, sleep patterns, and other vital signs.
- Data Storage: Store collected data securely in a database for analysis and historical reference.
- Data Synchronization: Ensure that data is synchronized between the wearable device and the mobile app or web platform.
Health Metrics Module
- Heart Rate Monitoring: Track and display real-time heart rate data, including resting heart rate and heart rate variability.
- Activity Tracking: Monitor physical activity levels, including steps taken, distance traveled, and calories burned.
- Sleep Analysis: Analyze sleep patterns, including sleep duration, quality, and stages (light, deep, REM).
Health Insights and Analytics Module
- Trend Analysis: Provide insights into health trends over time, such as changes in heart rate, activity levels, and sleep quality.
- Goal Setting: Allow users to set health and fitness goals (e.g., daily step count, weight loss) and track progress.
- Personalized Recommendations: Offer personalized health recommendations based on collected data and user goals.
Alerts and Notifications Module
- Health Alerts: Send alerts for abnormal health readings (e.g., high heart rate, low activity levels) to prompt users to take action.
- Reminders: Set reminders for medication, hydration, exercise, and other health-related activities.
Reporting Module
- Health Reports: Generate detailed health reports summarizing key metrics over specified periods (daily, weekly, monthly).
- Export Options: Allow users to export health data and reports in various formats (e.g., PDF, CSV) for sharing with healthcare providers.
Security and Privacy Module
- Data Encryption: Ensure that sensitive health data is encrypted and stored securely.
- Access Control: Implement user authentication and authorization to protect user data and privacy.
Feedback and Support Module
- User Feedback Collection: Allow users to provide feedback on the app and wearable device performance.
- Help Center: Provide FAQs, tutorials, and support documentation to assist users with common issues.
Mobile Application Module
- Mobile Access: Provide a mobile app for users to view their health data, receive notifications, and manage settings on the go.
- User-Friendly Interface: Design an intuitive interface for easy navigation and interaction with health metrics.
Community and Social Features Module (Optional)
- Social Sharing: Allow users to share achievements and progress with friends or on social media platforms.
- Community Support: Create forums or groups for users to connect, share experiences, and motivate each other.
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
);
-- Devices Table
CREATE TABLE Devices (
DeviceId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
DeviceName NVARCHAR(100) NOT NULL,
DeviceType NVARCHAR(50), -- e.g., Smartwatch, Fitness Band
SerialNumber NVARCHAR(100) UNIQUE,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- HealthData Table
CREATE TABLE HealthData (
HealthDataId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Timestamp DATETIME DEFAULT GETDATE(),
HeartRate INT,
BloodPressure NVARCHAR(20), -- e.g., "120/80"
BloodOxygenLevel DECIMAL(5, 2), -- e.g., 98.5
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- HeartRate Table
CREATE TABLE HeartRate (
HeartRateId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Timestamp DATETIME DEFAULT GETDATE(),
HeartRate INT,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Activity Table
CREATE TABLE Activities (
ActivityId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
ActivityType NVARCHAR(50), -- e.g., Walking, Running
Duration INT, -- Duration in minutes
CaloriesBurned INT,
Timestamp DATETIME DEFAULT GETDATE(),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- SleepData Table
CREATE TABLE SleepData (
SleepDataId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
SleepStart DATETIME,
SleepEnd DATETIME,
Duration INT, -- Duration in minutes
Quality NVARCHAR(50), -- e.g., Good, Fair, Poor
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- HealthReports Table
CREATE TABLE HealthReports (
HealthReportId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
ReportDate DATETIME DEFAULT GETDATE(),
Summary NVARCHAR(MAX),
Recommendations NVARCHAR(MAX),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Alerts Table
CREATE TABLE Alerts (
AlertId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
AlertType NVARCHAR(50), -- e.g., Heart Rate Alert, Activity Alert
Message NVARCHAR(MAX),
IsAcknowledged BIT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- 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)
);
-- CommunityPosts Table
CREATE TABLE CommunityPosts (
PostId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
PostContent NVARCHAR(MAX),
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, user).
Devices: Manages information about wearable devices associated with users.
HealthData: Records various health metrics collected from the wearable device.
HeartRate: Specifically tracks heart rate data over time.
Activities: Logs user activities, including type, duration, and calories burned.
SleepData: Tracks sleep patterns, including start and end times, duration, and quality of sleep.
HealthReports: Generates health reports summarizing user health data and providing recommendations.
Alerts: Manages alerts for users based on health metrics, allowing acknowledgment of alerts.
Feedback: Collects user feedback regarding the application, including ratings and comments.
CommunityPosts: Allows users to create posts within a community, fostering interaction and support.
Step 1: Create Migrations
You can create migrations using the Artisan command. For example, to create a migration for the Users table, you would run:
php artisan make:migration create_users_table
Migration for Users Table
// database/migrations/2025_02_01_000001_create_users_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id('user_id');
$table->string('username', 50)->unique();
$table->string('password_hash', 255);
$table->string('email', 100)->unique();
$table->string('phone', 15)->nullable();
$table->foreignId('role_id')->nullable()->constrained('roles', 'role_id');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}
Migration for Roles Table
// database/migrations/2025_02_01_000002_create_roles_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRolesTable extends Migration
{
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table->id('role_id');
$table->string('role_name', 50)->unique();
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}
Migration for Devices Table
// database/migrations/2025_02_01_000003_create_devices_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDevicesTable extends Migration
{
public function up()
{
Schema::create('devices', function (Blueprint $table) {
$table->id('device_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->string('device_name', 100);
$table->string('device_type', 50)->nullable();
$table->string('serial_number', 100)->unique();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('devices');
}
}
Migration for HealthData Table
// database/migrations/2025_02_01_000004_create_health_data_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateHealthDataTable extends Migration
{
public function up()
{
Schema::create('health_data', function (Blueprint $table) {
$table->id('health_data_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->timestamp('timestamp')->useCurrent();
$table->integer('heart_rate')->nullable();
$table->string('blood_pressure', 20)->nullable();
$table->decimal('blood_oxygen_level', 5, 2)->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('health_data');
}
}
Migration for HeartRate Table
// database/migrations/2025_02_01_000005_create_heart_rate_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateHeartRateTable extends Migration
{
public function up()
{
Schema::create('heart_rate', function (Blueprint $table) {
$table->id('heart_rate_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->timestamp('timestamp')->useCurrent();
$table->integer('heart_rate')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('heart_rate');
}
}
Migration for Activities Table
// database/migrations/2025_02_01_000006_create_activities_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateActivitiesTable extends Migration
{
public function up()
{
Schema::create('activities', function (Blueprint $table) {
$table->id('activity_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->string('activity_type', 50)->nullable();
$table->integer('duration')->nullable(); // Duration in minutes
$table->integer('calories_burned')->nullable();
$table->timestamp('timestamp')->useCurrent();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('activities');
}
}
Migration for SleepData Table
// database/migrations/2025_02_01_000007_create_sleep_data_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSleepDataTable extends Migration
{
public function up()
{
Schema::create('sleep_data', function (Blueprint $table) {
$table->id('sleep_data_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->timestamp('sleep_start')->nullable();
$table->timestamp('sleep_end')->nullable();
$table->integer('duration')->nullable(); // Duration in minutes
$table->string('quality', 50)->nullable(); // e.g., Good, Fair, Poor
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('sleep_data');
}
}
Migration for HealthReports Table
// database/migrations/2025_02_01_000008_create_health_reports_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateHealthReportsTable extends Migration
{
public function up()
{
Schema::create('health_reports', function (Blueprint $table) {
$table->id('health_report_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->timestamp('report_date')->useCurrent();
$table->text('summary')->nullable();
$table->text('recommendations')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('health_reports');
}
}
Migration for Alerts Table
// database/migrations/2025_02_01_000009_create_alerts_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAlertsTable extends Migration
{
public function up()
{
Schema::create('alerts', function (Blueprint $table) {
$table->id('alert_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->string('alert_type', 50)->nullable(); // e.g., Heart Rate Alert, Activity Alert
$table->text('message')->nullable();
$table->boolean('is_acknowledged')->default(false);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('alerts');
}
}
Migration for Feedback Table
// database/migrations/2025_02_01_000010_create_feedbacks_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFeedbacksTable extends Migration
{
public function up()
{
Schema::create('feedbacks', function (Blueprint $table) {
$table->id('feedback_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->text('comments')->nullable();
$table->integer('rating')->check('rating >= 1 AND rating <= 5')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('feedbacks');
}
}
Migration for CommunityPosts Table
// database/migrations/2025_02_01_000011_create_community_posts_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCommunityPostsTable extends Migration
{
public function up()
{
Schema::create('community_posts', function (Blueprint $table) {
$table->id('post_id');
$table->foreignId('user_id')->constrained('users', 'user_id');
$table->text('post_content')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('community_posts');
}
}
Step 2: Create Models
You can create models using the Artisan command. For example, to create a model for the User table, you would run:
php artisan make:model User
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 $fillable = [
'username',
'password_hash',
'email',
'phone',
'role_id',
];
public function role()
{
return $this->belongsTo(Role::class, 'role _id');
}
public function devices()
{
return $this->hasMany(Device::class, 'user_id');
}
public function healthData()
{
return $this->hasMany(HealthData::class, 'user_id');
}
public function heartRates()
{
return $this->hasMany(HeartRate::class, 'user_id');
}
public function activities()
{
return $this->hasMany(Activity::class, 'user_id');
}
public function sleepData()
{
return $this->hasMany(SleepData::class, 'user_id');
}
public function healthReports()
{
return $this->hasMany(HealthReport::class, 'user_id');
}
public function alerts()
{
return $this->hasMany(Alert::class, 'user_id');
}
public function feedbacks()
{
return $this->hasMany(Feedback::class, 'user_id');
}
public function communityPosts()
{
return $this->hasMany(CommunityPost::class, 'user_id');
}
}
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 $fillable = [
'role_name',
];
public function users()
{
return $this->hasMany(User::class, 'role_id');
}
}
Device Model
// app/Models/Device.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Device extends Model
{
use HasFactory;
protected $table = 'devices';
protected $fillable = [
'user_id',
'device_name',
'device_type',
'serial_number',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
HealthData Model
// app/Models/HealthData.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HealthData extends Model
{
use HasFactory;
protected $table = 'health_data';
protected $fillable = [
'user_id',
'timestamp',
'heart_rate',
'blood_pressure',
'blood_oxygen_level',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
HeartRate Model
// app/Models/HeartRate.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HeartRate extends Model
{
use HasFactory;
protected $table = 'heart_rate';
protected $fillable = [
'user_id',
'timestamp',
'heart_rate',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
Activity Model
// app/Models/Activity.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Activity extends Model
{
use HasFactory;
protected $table = 'activities';
protected $fillable = [
'user_id',
'activity_type',
'duration',
'calories_burned',
'timestamp',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
SleepData Model
// app/Models/SleepData.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SleepData extends Model
{
use HasFactory;
protected $table = 'sleep_data';
protected $fillable = [
'user_id',
'sleep_start',
'sleep_end',
'duration',
'quality',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
HealthReport Model
// app/Models/HealthReport.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HealthReport extends Model
{
use HasFactory;
protected $table = 'health_reports';
protected $fillable = [
'user_id',
'report_date',
'summary',
'recommendations',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
Alert Model
// app/Models/Alert.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Alert extends Model
{
use HasFactory;
protected $table = 'alerts';
protected $fillable = [
'user_id',
'alert_type',
'message',
'is_acknowledged',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
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 $fillable = [
'user_id',
'comments',
'rating',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
CommunityPost Model
// app/Models/CommunityPost.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CommunityPost extends Model
{
use HasFactory;
protected $table = 'community_posts';
protected $fillable = [
'user_id',
'post_content',
];
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}
Step 3: Run Migrations
After creating the migration files, you can run the migrations using the following command:
php artisan migrate
Step 4: Create Controllers
You can create a controller for each model using the following command:
php artisan make:controller UserController --resource
php artisan make:controller RoleController --resource
php artisan make:controller DeviceController --resource
php artisan make:controller HealthDataController --resource
php artisan make:controller HeartRateController --resource
php artisan make:controller ActivityController --resource
php artisan make:controller SleepDataController --resource
php artisan make:controller HealthReportController --resource
php artisan make:controller AlertController --resource
php artisan make:controller FeedbackController --resource
php artisan make:controller CommunityPostController --resource
UserController
// app/Http/Controllers/UserController.php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function index()
{
$users = User::all();
return view('users.index', compact('users'));
}
public function create()
{
return view('users.create');
}
public function store(Request $request)
{
$request->validate([
'username' => 'required|unique:users|max:50',
'password_hash' => 'required',
'email' => 'required|email|unique:users|max:100',
'phone' => 'nullable|max:15',
'role_id' => 'nullable|exists:roles,role_id',
]);
User::create($request->all());
return redirect()->route('users.index')->with('success', 'User created successfully.');
}
public function show(User $user)
{
return view('users.show', compact('user'));
}
public function edit(User $user)
{
return view('users.edit', compact('user'));
}
public function update(Request $request, User $user)
{
$request->validate([
'username' => 'required|max:50|unique:users,username,' . $user->user_id,
'password_hash' => 'required',
'email' => 'required|email|max:100|unique:users,email,' . $user->user_id,
'phone' => 'nullable|max:15',
'role_id' => 'nullable|exists:roles,role_id',
]);
$user->update($request->all());
return redirect()->route('users.index')->with('success', 'User updated successfully.');
}
public function destroy(User $user)
{
$user->delete();
return redirect()->route('users.index')->with('success', 'User deleted successfully.');
}
}
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([
'role_name' => '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([
'role_name' => 'required|max:50|unique:roles,role_name,' . $role->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.');
}
}
DeviceController
// app/Http/Controllers/DeviceController.php
namespace App\Http\Controllers;
use App\Models\Device;
use App\Models\User;
use Illuminate\Http\Request;
class DeviceController extends Controller
{
public function index()
{
$devices = Device::all();
return view('devices.index', compact('devices'));
}
public function create()
{
$users = User::all();
return view('devices.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'device_name' => 'required|max:100',
'device_type' => 'nullable|max:50',
'serial_number' => 'required|unique:devices|max:100',
]);
Device::create($request->all());
return redirect()->route('devices.index')->with('success', 'Device created successfully.');
}
public function show(Device $device)
{
return view('devices.show', compact('device'));
}
public function edit(Device $device)
{
$users = User::all();
return view('devices.edit', compact('device', 'users'));
}
public function update(Request $request, Device $device)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'device_name' => 'required|max:100',
'device_type' => 'nullable|max:50',
'serial_number' => 'required|unique:devices,serial_number,' . $device->device_id,
]);
$device->update($request->all());
return redirect()->route('devices.index')->with('success', 'Device updated successfully.');
}
public function destroy(Device $device)
{
$device->delete();
return redirect()->route('devices.index')->with('success', 'Device deleted successfully.');
}
}
HealthDataController
// app/Http/Controllers/HealthDataController.php
namespace App\Http\Controllers;
use App\Models\HealthData;
use App\Models\User;
use Illuminate\Http\Request;
class HealthDataController extends Controller
{
public function index()
{
$healthData = HealthData::all();
return view('health_data.index', compact('healthData'));
}
public function create()
{
$users = User::all();
return view('health_data.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'heart_rate' => 'nullable|integer',
'blood_pressure' => 'nullable|max:20',
'blood_oxygen_level' => 'nullable|numeric',
]);
HealthData::create($request->all());
return redirect()->route('health_data.index')->with('success', 'Health data created successfully.');
}
public function show(HealthData $healthData)
{
return view('health_data.show', compact('healthData'));
}
public function edit(HealthData $healthData)
{
$users = User::all();
return view('health_data.edit', compact('healthData', 'users'));
}
public function update(Request $request, HealthData $healthData)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'heart_rate' => 'nullable|integer',
'blood_pressure' => 'nullable|max:20',
'blood_oxygen_level' => 'nullable|numeric',
]);
$healthData->update($request->all());
return redirect()->route('health_data.index')->with('success', 'Health data updated successfully.');
}
public function destroy(HealthData $healthData)
{
$healthData->delete();
return redirect()->route('health_data.index')->with('success', 'Health data deleted successfully.');
}
}
HeartRateController
// app/Http/Controllers/HeartRateController.php
namespace App\Http\Controllers;
use App\Models\HeartRate;
use App\Models\User;
use Illuminate\Http\Request;
class HeartRateController extends Controller
{
public function index()
{
$heartRates = HeartRate::all();
return view('heart_rate.index', compact('heartRates'));
}
public function create()
{
$users = User::all();
return view('heart_rate.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'heart_rate' => 'required|integer',
]);
HeartRate::create($request->all());
return redirect()->route('heart_rate.index')->with('success', 'Heart rate data created successfully.');
}
public function show(HeartRate $heartRate)
{
return view('heart_rate.show', compact('heartRate'));
}
public function edit(HeartRate $heartRate)
{
$users = User::all();
return view('heart_rate.edit', compact('heartRate', 'users'));
}
public function update(Request $request, HeartRate $heartRate)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'heart_rate' => 'required|integer',
]);
$heartRate->update($request->all());
return redirect()->route('heart_rate.index')->with('success', 'Heart rate data updated successfully.');
}
public function destroy(HeartRate $heartRate)
{
$heartRate->delete();
return redirect()->route ('heart_rate.index')->with('success', 'Heart rate data deleted successfully.');
}
}
ActivityController
// app/Http/Controllers/ActivityController.php
namespace App\Http\Controllers;
use App\Models\Activity;
use App\Models\User;
use Illuminate\Http\Request;
class ActivityController extends Controller
{
public function index()
{
$activities = Activity::all();
return view('activities.index', compact('activities'));
}
public function create()
{
$users = User::all();
return view('activities.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'activity_type' => 'required|max:50',
'duration' => 'nullable|integer',
'calories_burned' => 'nullable|integer',
]);
Activity::create($request->all());
return redirect()->route('activities.index')->with('success', 'Activity created successfully.');
}
public function show(Activity $activity)
{
return view('activities.show', compact('activity'));
}
public function edit(Activity $activity)
{
$users = User::all();
return view('activities.edit', compact('activity', 'users'));
}
public function update(Request $request, Activity $activity)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'activity_type' => 'required|max:50',
'duration' => 'nullable|integer',
'calories_burned' => 'nullable|integer',
]);
$activity->update($request->all());
return redirect()->route('activities.index')->with('success', 'Activity updated successfully.');
}
public function destroy(Activity $activity)
{
$activity->delete();
return redirect()->route('activities.index')->with('success', 'Activity deleted successfully.');
}
}
SleepDataController
// app/Http/Controllers/SleepDataController.php
namespace App\Http\Controllers;
use App\Models\SleepData;
use App\Models\User;
use Illuminate\Http\Request;
class SleepDataController extends Controller
{
public function index()
{
$sleepData = SleepData::all();
return view('sleep_data.index', compact('sleepData'));
}
public function create()
{
$users = User::all();
return view('sleep_data.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'sleep_start' => 'nullable|date',
'sleep_end' => 'nullable|date',
'duration' => 'nullable|integer',
'quality' => 'nullable|max:50',
]);
SleepData::create($request->all());
return redirect()->route('sleep_data.index')->with('success', 'Sleep data created successfully.');
}
public function show(SleepData $sleepData)
{
return view('sleep_data.show', compact('sleepData'));
}
public function edit(SleepData $sleepData)
{
$users = User::all();
return view('sleep_data.edit', compact('sleepData', 'users'));
}
public function update(Request $request, SleepData $sleepData)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'sleep_start' => 'nullable|date',
'sleep_end' => 'nullable|date',
'duration' => 'nullable|integer',
'quality' => 'nullable|max:50',
]);
$sleepData->update($request->all());
return redirect()->route('sleep_data.index')->with('success', 'Sleep data updated successfully.');
}
public function destroy(SleepData $sleepData)
{
$sleepData->delete();
return redirect()->route('sleep_data.index')->with('success', 'Sleep data deleted successfully.');
}
}
HealthReportController
// app/Http/Controllers/HealthReportController.php
namespace App\Http\Controllers;
use App\Models\HealthReport;
use App\Models\User;
use Illuminate\Http\Request;
class HealthReportController extends Controller
{
public function index()
{
$healthReports = HealthReport::all();
return view('health_reports.index', compact('healthReports'));
}
public function create()
{
$users = User::all();
return view('health_reports.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'summary' => 'nullable',
'recommendations' => 'nullable 'nullable',
]);
HealthReport::create($request->all());
return redirect()->route('health_reports.index')->with('success', 'Health report created successfully.');
}
public function show(HealthReport $healthReport)
{
return view('health_reports.show', compact('healthReport'));
}
public function edit(HealthReport $healthReport)
{
$users = User::all();
return view('health_reports.edit', compact('healthReport', 'users'));
}
public function update(Request $request, HealthReport $healthReport)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'summary' => 'nullable',
'recommendations' => 'nullable',
]);
$healthReport->update($request->all());
return redirect()->route('health_reports.index')->with('success', 'Health report updated successfully.');
}
public function destroy(HealthReport $healthReport)
{
$healthReport->delete();
return redirect()->route('health_reports.index')->with('success', 'Health report deleted successfully.');
}
}
AlertController
// app/Http/Controllers/AlertController.php
namespace App\Http\Controllers;
use App\Models\Alert;
use App\Models\User;
use Illuminate\Http\Request;
class AlertController extends Controller
{
public function index()
{
$alerts = Alert::all();
return view('alerts.index', compact('alerts'));
}
public function create()
{
$users = User::all();
return view('alerts.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'alert_type' => 'nullable|max:50',
'message' => 'nullable',
'is_acknowledged' => 'boolean',
]);
Alert::create($request->all());
return redirect()->route('alerts.index')->with('success', 'Alert created successfully.');
}
public function show(Alert $alert)
{
return view('alerts.show', compact('alert'));
}
public function edit(Alert $alert)
{
$users = User::all();
return view('alerts.edit', compact('alert', 'users'));
}
public function update(Request $request, Alert $alert)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'alert_type' => 'nullable|max:50',
'message' => 'nullable',
'is_acknowledged' => 'boolean',
]);
$alert->update($request->all());
return redirect()->route('alerts.index')->with('success', 'Alert updated successfully.');
}
public function destroy(Alert $alert)
{
$alert->delete();
return redirect()->route('alerts.index')->with('success', 'Alert deleted successfully.');
}
}
FeedbackController
// app/Http/Controllers/FeedbackController.php
namespace App\Http\Controllers;
use App\Models\Feedback;
use App\Models\User;
use Illuminate\Http\Request;
class FeedbackController extends Controller
{
public function index()
{
$feedbacks = Feedback::all();
return view('feedbacks.index', compact('feedbacks'));
}
public function create()
{
$users = User::all();
return view('feedbacks.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'comments' => 'nullable',
'rating' => 'nullable|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)
{
$users = User::all();
return view('feedbacks.edit', compact('feedback', 'users'));
}
public function update(Request $request, Feedback $feedback)
{
$request->validate([
'user_id' => 'required|exists:users,user_id',
'comments' => 'nullable',
'rating' => 'nullable|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.');
}
}
CommunityPostController
Step 5: Create Views
You will also need to create views for each of the CRUD operations. Create a directory for each model under resources/views and create the necessary Blade files for index, create, edit, show, etc.
Creating view files for each controller using Bootstrap 5
Step 1: Create Directory Structure
resources/views/
├── users/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── roles/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── devices/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── health_data/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── heart_rate/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── activities/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── sleep_data/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── health_reports/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── alerts/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── feedbacks/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
└── community_posts/
├── index.blade.php
├── create.blade.php
├── edit.blade.php
└── show.blade.php
Step 2: Create View Files
Below are the basic implementations for each view file using Bootstrap 5.
1. Users Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Users</h1>
<a href="{{ route('users.create') }}" class="btn btn-primary mb-3">Create User</a>
<table class="table">
<thead>
<tr>
<th>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>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<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="password_hash" class="form-label">Password</label>
<input type="password" class="form-control" id="password_hash" name="password_hash" 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="role_id" class="form-label">Role</label>
<select class="form-select" id="role_id" name="role_id">
<option value="">Select Role</option>
@foreach ($roles as $role)
<option value="{{ $role->role_id }}">{{ $role->role_name }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-success">Create User</button>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<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="password_hash" class="form-label">Password</label>
<input type="password" class="form-control" id="password_hash" name="password_hash" 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="role_id" class="form-label">Role</label>
<select class="form-select" id="role_id" name="role_id">
<option value="">Select Role</option>
@foreach ($roles as $role)
<option value="{{ $role->role_id }}" {{ $role->role_id == $user->role_id ? 'selected' : '' }}>{{ $role->role_name }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Update User</button>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>User Details</h1>
<div class="mb-3">
<strong>Username:</strong> {{ $user->username }}
</div>
<div class="mb-3">
<strong>Email:</strong> {{ $user->email }}
</div>
<div class="mb-3">
<strong>Phone:</strong> {{ $user->phone }}
</div>
<div class="mb-3">
<strong>Role:</strong> {{ $user->role->role_name ?? 'N/A' }}
</div>
<a href="{{ route('users.edit', $user) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
2. Roles Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Role Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($roles as $role)
<tr>
<td>{{ $role->role_id }}</td>
<td>{{ $role->role_name }}</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>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Role</h1>
<form action="{{ route('roles.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="role_name" class="form-label">Role Name</label>
<input type="text" class="form-control" id="role_name" name="role_name" required>
</div>
<button type="submit" class="btn btn-success">Create Role</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Role</h1>
<form action="{{ route('roles.update', $role) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="role_name" class="form-label">Role Name</label>
<input type="text" class="form-control" id="role_name" name="role_name" value="{{ $role->role_name }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Role</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Role Details</h1>
<div class="mb-3">
<strong>Role Name:</strong> {{ $role->role_name }}
</div>
<a href="{{ route('roles.edit', $role) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
3. Devices Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Devices</h1>
<a href="{{ route('devices.create') }}" class="btn btn-primary mb-3">Create Device</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Device Name</th>
<th>User</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($devices as $device)
<tr>
<td>{{ $device->device_id }}</td>
<td>{{ $device->device_name }}</td>
<td>{{ $device->user->username ?? 'N/A' }}</td>
<td>
<a href="{{ route('devices.show', $device) }}" class="btn btn-info">View</a>
<a href="{{ route('devices.edit', $device) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('devices.destroy', $device) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Device</h1>
<form action="{{ route('devices.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option @endforeach
</select>
</div>
<div class="mb-3">
<label for="device_name" class="form-label">Device Name</label>
<input type="text" class="form-control" id="device_name" name="device_name" required>
</div>
<div class="mb-3">
<label for="device_type" class="form-label">Device Type</label>
<input type="text" class="form-control" id="device_type" name="device_type">
</div>
<div class="mb-3">
<label for="serial_number" class="form-label">Serial Number</label>
<input type="text" class="form-control" id="serial_number" name="serial_number" required>
</div>
<button type="submit" class="btn btn-success">Create Device</button>
<a href="{{ route('devices.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Device</h1>
<form action="{{ route('devices.update', $device) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $device->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="device_name" class="form-label">Device Name</label>
<input type="text" class="form-control" id="device_name" name="device_name" value="{{ $device->device_name }}" required>
</div>
<div class="mb-3">
<label for="device_type" class="form-label">Device Type</label>
<input type="text" class="form-control" id="device_type" name="device_type" value="{{ $device->device_type }}">
</div>
<div class="mb-3">
<label for="serial_number" class="form-label">Serial Number</label>
<input type="text" class="form-control" id="serial_number" name="serial_number" value="{{ $device->serial_number }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Device</button>
<a href="{{ route('devices.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Device Details</h1>
<div class="mb-3">
<strong>Device Name:</strong> {{ $device->device_name }}
</div>
<div class="mb-3">
<strong>User:</strong> {{ $device->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Device Type:</strong> {{ $device->device_type }}
</div>
<div class="mb-3">
<strong>Serial Number:</strong> {{ $device->serial_number }}
</div>
<a href="{{ route('devices.edit', $device) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('devices.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
4. Health Data Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Health Data</h1>
<a href="{{ route('health_data.create') }}" class="btn btn-primary mb-3">Create Health Data</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Heart Rate</th>
<th>Blood Pressure</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($healthData as $data)
<tr>
<td>{{ $data->health_data_id }}</td>
<td>{{ $data->user->username ?? 'N/A' }}</td <td>{{ $data->heart_rate }}</td>
<td>{{ $data->blood_pressure }}</td>
<td>
<a href="{{ route('health_data.show', $data) }}" class="btn btn-info">View</a>
<a href="{{ route('health_data.edit', $data) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('health_data.destroy', $data) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Health Data</h1>
<form action="{{ route('health_data.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="heart_rate" class="form-label">Heart Rate</label>
<input type="number" class="form-control" id="heart_rate" name="heart_rate">
</div>
<div class="mb-3">
<label for="blood_pressure" class="form-label">Blood Pressure</label>
<input type="text" class="form-control" id="blood_pressure" name="blood_pressure">
</div>
<div class="mb-3">
<label for="blood_oxygen_level" class="form-label">Blood Oxygen Level</label>
<input type="number" class="form-control" id="blood_oxygen_level" name="blood_oxygen_level" step="0.01">
</div>
<button type="submit" class="btn btn-success">Create Health Data</button>
<a href="{{ route('health_data.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Health Data</h1>
<form action="{{ route('health_data.update', $healthData) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $healthData->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="heart_rate" class="form-label">Heart Rate</label>
<input type="number" class="form-control" id="heart_rate" name="heart_rate" value="{{ $healthData->heart_rate }}">
</div>
<div class="mb-3">
<label for="blood_pressure" class="form-label">Blood Pressure</label>
<input type="text" class="form-control" id="blood_pressure" name="blood_pressure" value="{{ $healthData->blood_pressure }}">
</div>
<div class="mb-3">
<label for="blood_oxygen_level" class="form-label">Blood Oxygen Level</label>
<input type="number" class="form-control" id="blood_oxygen_level" name="blood_oxygen_level" value="{{ $healthData->blood_oxygen_level }}" step="0.01">
</div>
<button type="submit" class="btn btn-primary">Update Health Data</button>
<a href="{{ route('health_data.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Health Data Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $healthData->user-> username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Heart Rate:</strong> {{ $healthData->heart_rate }}
</div>
<div class="mb-3">
<strong>Blood Pressure:</strong> {{ $healthData->blood_pressure }}
</div>
<div class="mb-3">
<strong>Blood Oxygen Level:</strong> {{ $healthData->blood_oxygen_level }}
</div>
<a href="{{ route('health_data.edit', $healthData) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('health_data.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
5. Heart Rate Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Heart Rates</h1>
<a href="{{ route('heart_rate.create') }}" class="btn btn-primary mb-3">Create Heart Rate</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Heart Rate</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($heartRates as $heartRate)
<tr>
<td>{{ $heartRate->heart_rate_id }}</td>
<td>{{ $heartRate->user->username ?? 'N/A' }}</td>
<td>{{ $heartRate->heart_rate }}</td>
<td>
<a href="{{ route('heart_rate.show', $heartRate) }}" class="btn btn-info">View</a>
<a href="{{ route('heart_rate.edit', $heartRate) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('heart_rate.destroy', $heartRate) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Heart Rate</h1>
<form action="{{ route('heart_rate.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="heart_rate" class="form-label">Heart Rate</label>
<input type="number" class="form-control" id="heart_rate" name="heart_rate" required>
</div>
<button type="submit" class="btn btn-success">Create Heart Rate</button>
<a href="{{ route('heart_rate.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Heart Rate</h1>
<form action="{{ route('heart_rate.update', $heartRate) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $heartRate->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="heart_rate" class="form-label">Heart Rate</label>
<input type="number" class="form-control" id="heart_rate" name="heart_rate" value="{{ $heartRate->heart_rate }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Heart Rate</button>
<a href="{{ route('heart_rate.index') }}" class="btn btn-secondary">Back </a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Heart Rate Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $heartRate->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Heart Rate:</strong> {{ $heartRate->heart_rate }}
</div>
<a href="{{ route('heart_rate.edit', $heartRate) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('heart_rate.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
6. Activity Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Activities</h1>
<a href="{{ route('activities.create') }}" class="btn btn-primary mb-3">Create Activity</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Activity Type</th>
<th>Duration</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($activities as $activity)
<tr>
<td>{{ $activity->activity_id }}</td>
<td>{{ $activity->user->username ?? 'N/A' }}</td>
<td>{{ $activity->activity_type }}</td>
<td>{{ $activity->duration }}</td>
<td>
<a href="{{ route('activities.show', $activity) }}" class="btn btn-info">View</a>
<a href="{{ route('activities.edit', $activity) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('activities.destroy', $activity) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Activity</h1>
<form action="{{ route('activities.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="activity_type" class="form-label">Activity Type</label>
<input type="text" class="form-control" id="activity_type" name="activity_type" required>
</div>
<div class="mb-3">
<label for="duration" class="form-label">Duration (minutes)</label>
<input type="number" class="form-control" id="duration" name="duration">
</div>
<div class="mb-3">
<label for="calories_burned" class="form-label">Calories Burned</label>
<input type="number" class="form-control" id="calories_burned" name="calories_burned">
</div>
<button type="submit" class="btn btn-success">Create Activity</button>
<a href="{{ route('activities.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Activity</h1>
<form action="{{ route('activities.update', $activity) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $activity->user_id ? 'selected' : '' }}>{{ $user-> username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="activity_type" class="form-label">Activity Type</label>
<input type="text" class="form-control" id="activity_type" name="activity_type" value="{{ $activity->activity_type }}" required>
</div>
<div class="mb-3">
<label for="duration" class="form-label">Duration (minutes)</label>
<input type="number" class="form-control" id="duration" name="duration" value="{{ $activity->duration }}">
</div>
<div class="mb-3">
<label for="calories_burned" class="form-label">Calories Burned</label>
<input type="number" class="form-control" id="calories_burned" name="calories_burned" value="{{ $activity->calories_burned }}">
</div>
<button type="submit" class="btn btn-primary">Update Activity</button>
<a href="{{ route('activities.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Activity Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $activity->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Activity Type:</strong> {{ $activity->activity_type }}
</div>
<div class="mb-3">
<strong>Duration:</strong> {{ $activity->duration }} minutes
</div>
<div class="mb-3">
<strong>Calories Burned:</strong> {{ $activity->calories_burned }}
</div>
<a href="{{ route('activities.edit', $activity) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('activities.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
7. Sleep Data Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Sleep Data</h1>
<a href="{{ route('sleep_data.create') }}" class="btn btn-primary mb-3">Create Sleep Data</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Sleep Start</th>
<th>Sleep End</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($sleepData as $data)
<tr>
<td>{{ $data->sleep_data_id }}</td>
<td>{{ $data->user->username ?? 'N/A' }}</td>
<td>{{ $data->sleep_start }}</td>
<td>{{ $data->sleep_end }}</td>
<td>
<a href="{{ route('sleep_data.show', $data) }}" class="btn btn-info">View</a>
<a href="{{ route('sleep_data.edit', $data) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('sleep_data.destroy', $data) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Sleep Data</h1>
<form action="{{ route('sleep_data.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="sleep_start" class="form-label">Sleep Start</label>
<input type="datetime-local" class="form-control" id="sleep_start" name="sleep_start" required>
</div>
<div class="mb-3">
<label for="sleep_end" class="form-label">Sleep End</label>
<input type="datetime-local" class="form-control" id="sleep_end" name="sleep_end" required>
</div>
<div class="mb-3">
<label for="duration" class="form-label">Duration (minutes)</label>
<input type="number" class="form-control" id="duration" name="duration">
</div>
<div class="mb-3">
<label for="quality" class="form-label">Quality</label>
<input type="text" class="form-control" id="quality" name="quality">
</div>
<button type="submit" class="btn btn-success">Create Sleep Data</button>
<a href="{{ route('sleep_data.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Sleep Data</h1>
<form action="{{ route('sleep_data.update', $sleepData) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $sleepData->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="sleep_start" class="form-label">Sleep Start</label>
<input type="datetime-local" class="form-control" id="sleep_start" name="sleep_start" value="{{ $sleepData->sleep_start }}" required>
</div>
<div class="mb-3">
<label for="sleep_end" class="form-label">Sleep End</label>
<input type="datetime-local" class="form-control" id="sleep_end" name="sleep_end" value="{{ $sleepData->sleep_end }}" required>
</div>
<div class="mb-3">
<label for="duration" class="form-label">Duration (minutes)</label>
<input type="number" class="form-control" id="duration" name="duration" value="{{ $sleepData->duration }}">
</div>
<div class="mb-3">
<label for="quality" class="form-label">Quality</label>
<input type="text" class="form-control" id="quality" name="quality" value="{{ $sleepData->quality }}">
</div>
<button type="submit" class="btn btn-primary">Update Sleep Data</button>
<a href="{{ route('sleep_data.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Sleep Data Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $sleepData->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Sleep Start:</strong> {{ $sleepData->sleep_start }}
</div>
<div class="mb-3">
<strong>Sleep End:</strong> {{ $sleepData->sleep_end }}
</div>
<div class="mb-3">
<strong>Duration:</strong> {{ $sleepData->duration }} minutes
</div>
<div class="mb-3">
<strong>Quality:</strong> {{ $sleepData->quality }}
</div>
<a href="{{ route('sleep_data.edit', $sleepData) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('sleep_data.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
8. Health Report Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Health Reports</h1>
<a href="{{ route('health_reports.create') }}" class="btn btn-primary mb-3">Create Health Report</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Summary</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($healthReports as $report)
<tr>
<td>{{ $report->health_report_id }}</td>
<td>{{ $report->user->username ?? 'N/A' }}</td>
<td>{{ $report->summary }}</td>
<td>
<a href="{{ route('health_reports.show', $report) }}" class="btn btn-info">View</a>
<a href="{{ route('health_reports.edit', $report) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('health_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>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Health Report</h1>
<form action="{{ route('health_reports.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="summary" class="form-label">Summary</label>
<textarea class="form-control" id="summary" name="summary" rows="3"></textarea>
</div>
<div class="mb-3">
<label for="recommendations" class="form-label">Recommendations</label>
<textarea class="form-control" id="recommendations" name="recommendations" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-success">Create Health Report</button>
<a href="{{ route('health_reports.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Health Report</h1>
<form action="{{ route('health_reports.update', $healthReport) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $healthReport->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="summary" class="form-label">Summary</label>
<textarea class="form-control" id="summary" name="summary" rows="3">{{ $healthReport->summary }}</textarea>
</div>
<div class="mb-3">
<label for="recommendations" class="form-label">Recommendations</label>
<textarea class="form-control" id="recommendations" name="recommendations" rows="3">{{ $healthReport->recommendations }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Health Report</button>
<a href="{{ route('health_reports.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Health Report Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $healthReport->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Summary:</strong> {{ $healthReport->summary }}
</div>
<div class="mb-3">
<strong>Recommendations:</strong> {{ $healthReport->recommendations }}
</div>
<a href="{{ route('health_reports.edit', $ healthReport) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('health_reports.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
9. Alert Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Alerts</h1>
<a href="{{ route('alerts.create') }}" class="btn btn-primary mb-3">Create Alert</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Alert Type</th>
<th>Message</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($alerts as $alert)
<tr>
<td>{{ $alert->alert_id }}</td>
<td>{{ $alert->user->username ?? 'N/A' }}</td>
<td>{{ $alert->alert_type }}</td>
<td>{{ $alert->message }}</td>
<td>
<a href="{{ route('alerts.show', $alert) }}" class="btn btn-info">View</a>
<a href="{{ route('alerts.edit', $alert) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('alerts.destroy', $alert) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Alert</h1>
<form action="{{ route('alerts.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="alert_type" class="form-label">Alert Type</label>
<input type="text" class="form-control" id="alert_type" name="alert_type" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="3"></textarea>
</div>
<div class="mb-3">
<label for="is_acknowledged" class="form-label">Acknowledged</label>
<input type="checkbox" id="is_acknowledged" name="is_acknowledged" value="1">
</div>
<button type="submit" class="btn btn-success">Create Alert</button>
<a href="{{ route('alerts.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Alert</h1>
<form action="{{ route('alerts.update', $alert) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $alert->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="alert_type" class="form-label">Alert Type</label>
<input type="text" class="form-control" id="alert_type" name="alert_type" value="{{ $alert->alert_type }}" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="3">{{ $alert->message }}</textarea>
</div>
<div class="mb-3">
<label for="is_acknowledged" class="form-label">Acknowledged</label>
<input type="checkbox" id="is_acknowledged" name="is_acknowledged" value="1" {{ $alert->is_acknowledged ? 'checked' : '' }}>
</div>
<button type="submit" class="btn btn-primary">Update Alert</button>
<a href="{{ route('alerts.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Alert Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $alert->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Alert Type:</strong> {{ $alert->alert_type }}
</div>
<div class="mb-3">
<strong>Message:</strong> {{ $alert->message }}
</div>
<div class="mb-3">
<strong>Acknowledged:</strong> {{ $alert->is_acknowledged ? 'Yes' : 'No' }}
</div>
<a href="{{ route('alerts.edit', $alert) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('alerts.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
10. Feedback Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Feedbacks</h1>
<a href="{{ route('feedbacks.create') }}" class="btn btn-primary mb-3">Create Feedback</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Comments</th>
<th>Rating</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($feedbacks as $feedback)
<tr>
<td>{{ $feedback->feedback_id }}</td>
<td>{{ $feedback->user->username ?? 'N/A' }}</td>
<td>{{ $feedback->comments }}</td>
<td>{{ $feedback->rating }}</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>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Feedback</h1>
<form action="{{ route('feedbacks.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="comments" class="form-label">Comments</label>
<textarea class="form-control" id="comments" name="comments" rows="3"></textarea>
</div>
<div class="mb-3">
<label for="rating" class="form-label">Rating</label>
<input type="number" class="form-control" id="rating" name="rating" min="1" max="5">
</div>
<button type="submit" class="btn btn-success">Create Feedback</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<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 </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $feedback->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="comments" class="form-label">Comments</label>
<textarea class="form-control" id="comments" name="comments" rows="3">{{ $feedback->comments }}</textarea>
</div>
<div class="mb-3">
<label for="rating" class="form-label">Rating</label>
<input type="number" class="form-control" id="rating" name="rating" value="{{ $feedback->rating }}" min="1" max="5">
</div>
<button type="submit" class="btn btn-primary">Update Feedback</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Feedback Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $feedback->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Comments:</strong> {{ $feedback->comments }}
</div>
<div class="mb-3">
<strong>Rating:</strong> {{ $feedback->rating }}
</div>
<a href="{{ route('feedbacks.edit', $feedback) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
11. Community Post Views
index.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Community Posts</h1>
<a href="{{ route('community_posts.create') }}" class="btn btn-primary mb-3">Create Community Post</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>User</th>
<th>Post Content</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($communityPosts as $post)
<tr>
<td>{{ $post->post_id }}</td>
<td>{{ $post->user->username ?? 'N/A' }}</td>
<td>{{ $post->post_content }}</td>
<td>
<a href="{{ route('community_posts.show', $post) }}" class="btn btn-info">View</a>
<a href="{{ route('community_posts.edit', $post) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('community_posts.destroy', $post) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
create.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Community Post</h1>
<form action="{{ route('community_posts.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}">{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="post_content" class="form-label">Post Content</label>
<textarea class="form-control" id="post_content" name="post_content" rows="3"></textarea>
</div>
<button type="submit" class="btn btn -success">Create Community Post</button>
<a href="{{ route('community_posts.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
edit.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Community Post</h1>
<form action="{{ route('community_posts.update', $communityPost) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="user_id" class="form-label">User </label>
<select class="form-select" id="user_id" name="user_id" required>
<option value="">Select User</option>
@foreach ($users as $user)
<option value="{{ $user->user_id }}" {{ $user->user_id == $communityPost->user_id ? 'selected' : '' }}>{{ $user->username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="post_content" class="form-label">Post Content</label>
<textarea class="form-control" id="post_content" name="post_content" rows="3">{{ $communityPost->post_content }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Community Post</button>
<a href="{{ route('community_posts.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection
show.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Community Post Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $communityPost->user->username ?? 'N/A' }}
</div>
<div class="mb-3">
<strong>Post Content:</strong> {{ $communityPost->post_content }}
</div>
<a href="{{ route('community_posts.edit', $communityPost) }}" class="btn btn-warning">Edit</a>
<a href="{{ route('community_posts.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection
Creating a Dashboard Page
Creating a dashboard page in Laravel to display consolidated data related to your project involves several steps. Below, I will guide you through creating a dashboard view that aggregates data from the various models (Users, Roles, Devices, Health Data, etc.) and displays it in a user-friendly format using Bootstrap 5.
Step 1: Create a Dashboard Route
First, you need to define a route for the dashboard in your routes/web.php file:
use App\Http\Controllers\DashboardController;
Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard');
Step 2: Create a Dashboard Controller
Next, create a controller for the dashboard:
php artisan make:controller DashboardController
Then, implement the index method in the DashboardController 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\Device;
use App\Models\HealthData;
use App\Models\HeartRate;
use App\Models\Activity;
use App\Models\SleepData;
use App\Models\HealthReport;
use App\Models\Alert;
use App\Models\Feedback;
use App\Models\CommunityPost;
class DashboardController extends Controller
{
public function index()
{
$userCount = User::count();
$roleCount = Role::count();
$deviceCount = Device::count();
$healthDataCount = HealthData::count();
$heartRateCount = HeartRate::count();
$activityCount = Activity::count();
$sleepDataCount = SleepData::count();
$healthReportCount = HealthReport::count();
$alertCount = Alert::count();
$feedbackCount = Feedback::count();
$communityPostCount = CommunityPost::count();
return view('dashboard.index', compact(
'userCount',
'roleCount',
'deviceCount',
'healthDataCount',
'heartRateCount',
'activityCount',
'sleepDataCount',
'healthReportCount',
'alertCount',
'feedbackCount',
'communityPostCount'
));
}
}
Step 3: Create the Dashboard View
Now, create the view file for the dashboard. Create a new directory called dashboard under resources/views and then create an index.blade.php file:
@extends('layouts.app')
@section('content')
<div class="container">
<h1>Dashboard</h1>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-primary mb-3">
<div class="card-header">Total Users</div>
<div class="card-body">
<h5 class="card-title">{{ $userCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Total Roles</div>
<div class="card-body">
<h5 class="card-title">{{ $roleCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Total Devices</div>
<div class="card-body">
<h5 class="card-title">{{ $deviceCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Total Health Data</div>
<div class="card-body">
<h5 class="card-title">{{ $healthDataCount }}</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-danger mb-3">
<div class="card-header">Total Heart Rates</div>
<div class="card-body">
<h5 class="card-title">{{ $heartRateCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-secondary mb-3">
<div class="card-header">Total Activities</div>
<div class="card-body">
<h5 class="card-title">{{ $activityCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-light mb-3">
<div class="card-header">Total Sleep Data</div>
<div class="card-body">
<h5 class="card-title">{{ $sleepDataCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-dark mb-3">
<div class="card-header">Total Health Reports</div>
<div class="card-body">
<h5 class=" card-title">{{ $healthReportCount }}</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Total Alerts</div>
<div class="card-body">
<h5 class="card-title">{{ $alertCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Total Feedbacks</div>
<div class="card-body">
<h5 class="card-title">{{ $feedbackCount }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Total Community Posts</div>
<div class="card-body">
<h5 class="card-title">{{ $communityPostCount }}</h5>
</div>
</div>
</div>
</div>
</div>
@endsection
Step 4: Update the Layout
Ensure that your main layout file (e.g., layouts/app.blade.php) includes Bootstrap 5 CSS and JS files for proper styling and functionality.