<%= t('vehicles.title') %>

<%= link_to t('vehicles.new'), new_admin_vehicle_path, class: 'btn btn-success' %>

<%= notice %>

<% @vehicles.each do |vehicle| %> <% end %>
<%= t('activerecord.attributes.vehicle.enrollment') %> <%= t('activerecord.attributes.vehicle.model') %> <%= t('activerecord.attributes.vehicle.serial_number') %> <%= t('tables.actions') %>
<%= vehicle.enrollment %> <%= vehicle.model %> <%= vehicle.serial_number %> <%= link_to t('actions.show'), admin_vehicle_path(vehicle) %> <%= link_to t('actions.edit'), edit_admin_vehicle_path(vehicle) %> <%= link_to t('actions.destroy'), admin_vehicle_path(vehicle), method: :delete, data: {confirm: t('tables.confirm')} %>