<%= image_tag @movie.image_file_name %>

<%= @movie.title %>

<%= year_of(@movie) %> • <%= @movie.rating %>

<%= link_to pluralize(@movie.reviews.size, "review"), movie_reviews_path(@movie) %>

<%= @movie.description %>

Director: <%= @movie.director %>
Duration: <%= @movie.duration %>
Total Gross: <%= total_gross(@movie) %>
<%= link_to "Edit", edit_movie_path(@movie), class: "button" %> <%= link_to "Delete", movie_path(@movie), class: "button", data: { turbo_method: :delete, turbo_confirm: "Are you sure?" } %>