{% extends 'layout.html.twig' %} {% block title %}Visitor Analytics{% endblock %} {% block body %}

Page Visit Analytics

Total Visits

Unique Visitors

Tracked by session ID (includes both anonymous and logged-in visitors)

Visit Count by Route (Last 7 Days)

{% if visitStats|length > 0 %} {% for stat in visitStats %} {% endfor %}
Route #
{{ stat.route }} {{ stat.count }}
{% else %}

No visit data recorded in the last 7 days.

{% endif %}

Visitor Sessions (Last 7 Days)

{% if sessionStats|length > 0 %} {% for stat in sessionStats %} {% endfor %}
Session ID Visits First Visit Last Visit
{{ stat.sessionId|slice(0, 12) }}... {{ stat.visitCount }} {{ stat.firstVisit|date('M d, H:i') }} {{ stat.lastVisit|date('M d, H:i') }}
{% else %}

No visitor sessions recorded in the last 7 days.

{% endif %}

Visit tracking is automated via event listener. Session IDs track all unique visitors (both anonymous and logged-in) for accurate engagement analytics.

{% endblock %}