In my Laravel application, I want my backend controller to start a download for the user with a different web address (i.e. another domain and not Laravel). For the internal storage, I know how to properly start a download, but how if I only have the direct link (for instance: https://xy.tld/web/image1.png) without 'leaving' the Laravel instance (the current window shall not be altered)?
EDIT: I found this (Download a file in Laravel using a URL to external resource) and I don't want to download it to my laravel ere sending it to the user. However, someone there mentioned redirects. Can I redirect in a different window/tab?