bookRepo = $bookRepo; $this->exportService = $exportService; } /** * Export a book as a PDF file. * @throws Throwable */ public function exportPdf(int $id) { $book = Book::visible()->findOrFail($id); $pdfContent = $this->exportService->bookToPdf($book); return $this->downloadResponse($pdfContent, $book->slug . '.pdf'); } /** * Export a book as a contained HTML file. * @throws Throwable */ public function exportHtml(int $id) { $book = Book::visible()->findOrFail($id); $htmlContent = $this->exportService->bookToContainedHtml($book); return $this->downloadResponse($htmlContent, $book->slug . '.html'); } /** * Export a book as a plain text file. */ public function exportPlainText(int $id) { $book = Book::visible()->findOrFail($id); $textContent = $this->exportService->bookToPlainText($book); return $this->downloadResponse($textContent, $book->slug . '.txt'); } }