# frozen_string_literal: true class BooksController < ApplicationController def index @pages = StoryPage.includes(:character).all @characters = Character.all @total_pages = @pages.count end end