Customer Vehicles


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