📊 Users in Database

IMPORTANT: This script shows password hashes. Delete this file after use for security!

🔍 Checking Database Structure

Table Structure:

➕ Create New User🔑 Go to Login

📋 User List (5 users)

IdEmployee idEmailPasswordFirst nameLast nameRoleDepartmentPhoneStatusLast loginCreated atUpdated atActions
1HSE-001hse.manager@ncc.ae$2y$10$YourHashedPasswordHere...MohammedAl Hashimihse_managerHSE Departmentactive2026-02-05 11:09:212026-02-05 11:09:21
2HSE-002hse.officer1@ncc.ae$2y$10$YourHashedPasswordHere...FatimaAl Zaabihse_officerHSE Departmentactive2026-02-05 11:09:212026-02-05 11:09:21
3TRN-001trainer1@ncc.ae$2y$10$YourHashedPasswordHere...KhalidAl MarritrainerTraining Departmentactive2026-02-05 11:09:212026-02-05 11:09:21
4SUP-001supervisor1@ncc.ae$2y$10$YourHashedPasswordHere...SalemAl ShamsisupervisorOperationsactive2026-02-05 11:09:212026-02-05 11:09:21
5EMP20260206043817853admin@trn.mysignages.com$2y$12$RLPl6BLuPPRsPtltBTChu.9...vieweractive2026-02-06 04:38:172026-02-06 04:38:17

🔑 Recommended Login Credentials

Try these emails with password: Admin@123


⚙️ Quick Fixes

Option 1: Create Minimal User



Option 2: Run Migrations

If you have Laravel migrations, run:

php artisan migrate

Or execute this SQL:

ALTER TABLE users ADD COLUMN IF NOT EXISTS name VARCHAR(255) AFTER id;
ALTER TABLE users ADD COLUMN IF NOT EXISTS email_verified_at TIMESTAMP NULL AFTER email;
ALTER TABLE users ADD COLUMN IF NOT EXISTS remember_token VARCHAR(100) NULL AFTER password;