<%= notice %>

Crm Customers

<% @crm_customers.each do |crm_customer| %> <% end %>
Name Company Contact no Email Date of birth Membership Membership type Membership authentication code
<%= crm_customer.name %> <%= crm_customer.company %> <%= crm_customer.contact_no %> <%= crm_customer.email %> <%= crm_customer.date_of_birth %> <%= crm_customer.membership_id %> <%= crm_customer.membership_type %> <%= crm_customer.membership_authentication_code %> <%= link_to 'Show', crm_customer_path(crm_customer) %> <%= link_to 'Edit', edit_crm_customer_path(crm_customer) %> <%= link_to 'Destroy', crm_customer_path(crm_customer), method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Crm Customer', new_crm_customer_path %>