Update book table to cintain extra info

This commit is contained in:
Tyler
2020-12-27 04:29:52 -05:00
parent 428213d49f
commit 58e27a38ad
8 changed files with 25351 additions and 3 deletions

View File

@ -26,6 +26,9 @@ class GoogleBooks implements BookLookupService {
'title' => $volume->getTitle(),
'authors' => $volume->getAuthors(),
'images' => $volume->getImageLinks(),
'description' => $volume->getDescription(),
'published_date' => $volume->getPublishedDate(),
'pages' => $volume->getPageCount()
];
}
}