DONE: layout letter with letterhead and footer, notification for newly...

This commit is contained in:
ISMAIL MASSERAN
2026-06-28 02:16:49 +00:00
parent 94ecbe5887
commit 034ecf947f
400 changed files with 29802 additions and 5446 deletions
@@ -42,8 +42,6 @@ class UserActivationNotification extends Notification
'message' => $this->getNotificationMessage(),
'user_name' => $this->newUser->name ?? 'Unknown',
'user_email' => $this->newUser->email ?? 'Unknown',
'user_army_number' => $this->newUser->army_number ?? 'Unknown',
'user_unit_name' => $this->newUser->unit->name ?? 'Unknown',
'user_status' => $this->newUser->status ?? 'pending',
];
}
@@ -55,10 +53,8 @@ class UserActivationNotification extends Notification
{
$userName = $this->newUser->name ?? 'Unknown';
$userEmail = $this->newUser->email ?? 'Unknown';
$userArmyNumber = $this->newUser->army_number ?? 'Unknown';
$unitName = $this->newUser->unit->name ?? 'Unknown';
return "Pengguna baru memerlukan pengaktifan. Nama: {$userName}, Email: {$userEmail}, No. Tentera: {$userArmyNumber}, Unit: {$unitName}";
return "Pengguna baru memerlukan pengaktifan. Nama: {$userName}, Email: {$userEmail}";
}
}