Started working on chapters

This commit is contained in:
Dan Brown
2015-07-27 20:17:08 +01:00
parent ef77c10a70
commit b9df3c647a
17 changed files with 317 additions and 40 deletions

View File

@ -79,7 +79,6 @@ class BookController extends Controller
{
$book = $this->bookRepo->getBySlug($slug);
$pageTree = $this->pageRepo->getTreeByBookId($book->id);
// dd($pageTree);
return view('books/show', ['book' => $book, 'pageTree' => $pageTree]);
}