The current agent access check is incorrect. The condition $agent->hasAccess() !== AccessResult::allowed() always returns false. It should be updated to !$agent->hasAccess()->isAllowed()
$agent->hasAccess() !== AccessResult::allowed()
!$agent->hasAccess()->isAllowed()
Active
1.0
Code