id); $images = []; foreach ($query->get() as $image) { $images[] = [ 'id' => $image->id, 'urls' => [ 'small' => $image->getUrl(Image::SMALL), 'normal' => $image->getUrl(Image::NORMAL), 'thumbnail' => $image->getUrl(Image::THUMBNAIL), 'original' => $image->getUrl(Image::ORIGINAL) ], 'filename' => $image->filename ]; } return Response::json($images, 200); } }