wire:navigate on an Action

Sounds simple, but an action can redirect to a URL like so:

Action::make(__('Open file'))
                    ->url(fn (File $file): string => route('file', ['file' => $this->file])),


And it works great. But can I put wire:navigate on that URL?
Was this page helpful?