Which directory should I point to? Do I use asset() in the same way as when I link to my app.css? Do I link directly to www.mydomain.com/storage/images?
@thecelebratedmrk You should point to whatever directory you store your files in.
Where do I add the $files = Storage::allFiles($directory);
You could do this in the controller, and then pass the array of files to your Blade view. You would then just do a @foreach over your array of files.
However, this probably isn’t what you want to do if you’re uploading say, 2MB images. Ideally, you should process images and create appropriately-sized thumbnails of uploaded images if you’re building a photo gallery, and then show a larger-sized images when the user selects a thumbnail.