LibraryManagementSystem/app/controllers/home_controller.rb

6 lines
93 B
Ruby

class HomeController < ApplicationController
def index
@books = Book.last(9)
end
end