You must use the entire route as shown below:
Route::get('images/{imageList?}', 'ExampleController@saveImages')
->where('imageList', '(.*)');
And then in your controller process the images as usual:
class ExampleController extends Controller {
public function saveData($imageList = null){
if($imageList){
}
}
}
And it looks like you were not thorough in your search, because this is in the documentation on the right here
source
share