$recents = $this->signedIn ? $this->entityRepo->getRecentlyViewed('book', 4, 0) : false;
$popular = $this->entityRepo->getPopular('book', 4, 0);
$new = $this->entityRepo->getRecentlyCreated('book', 4, 0);
- $booksViewType = setting()->getUser($this->currentUser, 'books_view_type', 'list');
+ $booksViewType = setting()->getUser($this->currentUser, 'books_view_type', config('app.views.books', 'list'));
$this->setPageTitle(trans('entities.books'));
return view('books/index', [
'books' => $books,
return [
-
'env' => env('APP_ENV', 'production'),
'editor' => env('APP_EDITOR', 'html'),
+ 'views' => [
+ 'books' => env('APP_VIEWS_BOOKS', 'list')
+ ],
+
/*
|--------------------------------------------------------------------------
| Application Debug Mode