Customer Vehicles



<% Vehicle.all.each do |vehicle| %>
<%= vehicle.qbo_customer.name %> <%= vehicle.to_s %> <%= button_to "Edit", vehicle, method: :edit %> <%= button_to "Delete", vehicle, method: :delete, data: {confirm: "You sure?"} %>
<% end %> <%= button_to "New", new_vehicle_path, method: :get %>