application->setStatus('APPROVED'); $staffProfile = StaffProfile::create([ 'userID' => $event->application->user->id, 'approvalDate' => now()->toDateTimeString(), 'memberNotes' => 'Approved by staff members. Welcome them to the team!' ]); Log::info('User ' . $event->application->user->name . ' has just been promoted!', [ 'newRank' => $event->application->response->vacancy->permissionGroupName, 'staffProfileID' => $staffProfile->id ]); // TODO: Dispatch alert email and notifications for the user and staff members // TODO: Also assign new app role based on the permission group name } }