How to use a local MinIO S3 server with Laravel, and automatically configure it for your Laravel Dusk test suite
If you're writing tests for your Laravel application and you need to interact with its storage system, you might have come across the Storage::fake() method. This method brilliantly fakes an entire filesystem disk, whether a local disk or an external disk like an S3 service. As a result, you don't h...