canDo('aml.nationality.import')) { return true; } return false; } /** * Determine if the given user can approve the given nationality. * * @param UserPolicyInterface $authUser * * @return bool */ public function export(UserPolicyInterface $authUser) { if ($authUser->canDo('aml.nationality.export')) { return true; } return false; } }