Date: <%= event.start_time.strftime('%B %d, %Y at %I:%M %p') %>
Status: <%= event.payout_status.humanize %>
<% if event.earnings.pending.any? %>Gross: €<%= (event.total_earnings_cents / 100.0).round(2) %>
Fees (10%): €<%= (event.total_fees_cents / 100.0).round(2) %>
Net: €<%= (event.net_earnings_cents / 100.0).round(2) %>
Payout not available yet
<% end %> <% else %>No pending earnings
<% end %>You haven't created any events yet.
<%= link_to "Create Event", new_promoter_event_path, class: "bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" %>