<%= notice %>

Customers

<% @customers.each do |customer| %> <% end %>
User Customer type Firstname Lastname Customer name Idnumber Dob Gender Address 1 Address 2 City Country Mobile 1 Mobile 2 Email Employer name Employment type Banker Banker branch Banker account number Banker account name District Province
<%= customer.user %> <%= customer.customer_type %> <%= customer.firstname %> <%= customer.lastname %> <%= customer.customer_name %> <%= customer.idnumber %> <%= customer.dob %> <%= customer.gender %> <%= customer.address_1 %> <%= customer.address_2 %> <%= customer.city %> <%= customer.country %> <%= customer.mobile_1 %> <%= customer.mobile_2 %> <%= customer.email %> <%= customer.employer_name %> <%= customer.employment_type %> <%= customer.banker %> <%= customer.banker_branch %> <%= customer.banker_account_number %> <%= customer.banker_account_name %> <%= customer.district %> <%= customer.province %> <%= link_to 'Show', customer %> <%= link_to 'Edit', edit_customer_path(customer) %> <%= link_to 'Destroy', customer, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Customer', new_customer_path %>