I am using FileStorage
from Laravel to store uploaded files. To get the url of a file I am using:
$url = Storage::url('/test/image.jpg');
It does return the url of the file on Amazon S3, however I want it to return the url of the file on CDN CloudFront.
How can I achieve this?
Thanks all!