When mounting an action in Filament PHP, are the arguments exposed to the browser (and potentially visible to a user inspecting the data) or are they strictly processed on the backend, ensuring they are not publicly visible?
This is the method in question:
public function mountAction(string $name, array $arguments = []): mixed
Example of a call that I'd like to keep the data private on:
$this->mountAction('mySuperDuperAction', [
'first_name' => 'Clark',
'last_name' => 'Kent',
'secret_identity' => 'Superman',
'social_security_number' => 'krypton-123-4567',
'secret_crush' => 'Lex Luthor',
]);