问题 I have this mostly working but having a tough time finalizing it. For now I have a simple route: Route::get('file/{id}/', 'FileController@fileStream')->name('file'); this route connects to an action in the FileController: public function fileStream($id){ $audio = \App\Audio::where('id', $id)->first(); $client = S3Client::factory([ 'credentials' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), ], 'region' => env('S3REGION'), 'version' => 'latest', ]); //