2021-04-27から1日間の記事一覧

掲示板詳細画面の追加

以前作成した掲示板の機能に詳細画面を追加 boards_controller.rb def show @board = Board.find(params[:id]) end boards/show.html.erbの作成 <article class="card"> <div class="card-body"> <h3><%= @board.title %><h3> <%= @board.created_at %> </ul> </div> </div> <p><%= @board.body %></p> </div> </article> <%= link_to '掲示板一覧', boa…