My absolute URL is linked to my public folder:
<img src="{{ absolute_url(asset('img/logo/image.jpg')) }}" alt="image"/>
It works fine like this, but in one case I need to load an image with an absolute URL but not to the public folder, instead, the image is in another folder that is on the same level then my public folder. I tried something like this:
<img src="{{ absolute_url(asset('../myfolder/private/image.jpg')) }}" alt="image"/>
But it is not working.