Hello, <%= current_user.full_name %> 👋

Overview of your activity and quick actions

Total Customers
<%= @total_customers %>
Total Properties
<%= @total_properties %>
Total Reservations
<%= @total_reservations %>
<%= link_to "➕ Add Customer", step1_agent_portal_customer_onboarding_path, class: "btn action-btn primary-btn w-100" %>
<%= link_to "🏠 View Properties", agent_portal_properties_path, class: "btn action-btn secondary-btn w-100" %>
<%= link_to "📄 My Reservations", agent_portal_reservations_path, class: "btn action-btn success-btn w-100" %>
Latest Customers
<% @customers.each do |customer| %> <% end %>
Name Email Phone Joined
<%= customer.customer_name.presence || customer.firstname %> <%= customer.email %> <%= customer.mobile_1 %> <%= customer.created_at.strftime("%b %d, %Y") %>