Processing multiple files in Laravel 5.1 (as an API)
问题 So this seems like a pretty basic thing but I can't find a lot of documentation online about what's going on.... I'm trying to run through a list of files using Laravel 5.1 and I can only return/process/see the first file. I'm using Postman to send the request to the API (so I know multiple is enabled in the POST request) and then iterating through that a few different ways: public function files(Request $request) { foreach($request->files as $file) { var_dump($file); } } even: public