IMPORTANT: This script shows password hashes. Delete this file after use for security!
Table Structure:
| Id | Employee id | Password | First name | Last name | Role | Department | Phone | Status | Last login | Created at | Updated at | Actions | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | HSE-001 | hse.manager@ncc.ae | $2y$10$YourHashedPasswordHere... | Mohammed | Al Hashimi | hse_manager | HSE Department | active | 2026-02-05 11:09:21 | 2026-02-05 11:09:21 | |||
| 2 | HSE-002 | hse.officer1@ncc.ae | $2y$10$YourHashedPasswordHere... | Fatima | Al Zaabi | hse_officer | HSE Department | active | 2026-02-05 11:09:21 | 2026-02-05 11:09:21 | |||
| 3 | TRN-001 | trainer1@ncc.ae | $2y$10$YourHashedPasswordHere... | Khalid | Al Marri | trainer | Training Department | active | 2026-02-05 11:09:21 | 2026-02-05 11:09:21 | |||
| 4 | SUP-001 | supervisor1@ncc.ae | $2y$10$YourHashedPasswordHere... | Salem | Al Shamsi | supervisor | Operations | active | 2026-02-05 11:09:21 | 2026-02-05 11:09:21 | |||
| 5 | EMP20260206043817853 | admin@trn.mysignages.com | $2y$12$RLPl6BLuPPRsPtltBTChu.9... | viewer | active | 2026-02-06 04:38:17 | 2026-02-06 04:38:17 |
Try these emails with password: Admin@123
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;