app/views/admin/research/laboratories/index.html.erb
<% content_for :title, Research::Laboratory.model_name.human(count: 2) %>
<div class="d-flex justify-content-between mb-4">
<p>
<%= @laboratories.total_count %>
<%= Research::Laboratory.model_name.human(count: @laboratories.total_count).downcase %>
</p>
<%= render 'filters', current_path: admin_research_laboratories_path %>
</div>
<%= render 'admin/research/laboratories/list', laboratories: @laboratories %>
<%= paginate @laboratories %>
<% content_for :action_bar_right do %>
<%= create_link Research::Laboratory %>
<% end %>