Hello , I am Creating A App Where Admin Uploads Zip File And User Who Have Member Ship Can Download It, And I Created A Folder Name Uploads in /storage
i Just Wanted To Ask If /Storage/uploads in accessible Or Not
@mrphp You should be using something like S3 where you can better control who can download files if this is some sort of protected/premium access site.
If you store them locally in storage and symlink the directory to your public directory then yes, any files in there will be accessible if someone knows the URL.
With S3, you can generate temporary URLs where I user gets a URL to download a file and that URL only works for a certain length of time.