Conversion Funnel
Visitors
{{ $funnelData['visitors'] }}
{{ $funnelData['visitors'] > 0 ? round(($funnelData['interest'] / $funnelData['visitors']) * 100, 1) . '%' : '0%' }}
Interest
{{ $funnelData['interest'] }}
{{ $funnelData['interest'] > 0 ? round(($funnelData['desire'] / $funnelData['interest']) * 100, 1) . '%' : '0%' }}
Added to Cart
{{ $funnelData['desire'] }}
{{ $funnelData['desire'] > 0 ? round(($funnelData['action'] / $funnelData['desire']) * 100, 1) . '%' : '0%' }}
Checkout
{{ $funnelData['action'] }}
{{ $funnelData['action'] > 0 ? round(($funnelData['conversion'] / $funnelData['action']) * 100, 1) . '%' : '0%' }}
Purchase
{{ $funnelData['conversion'] }}
Recent User Journeys
| Session ID | User | IP Address | Last Active | Actions |
|---|---|---|---|---|
| {{ Str::limit($session->session_id, 8) }} | {{ $session->user ? $session->user->name : 'Guest' }} | {{ $session->ip_address }} | {{ \Carbon\Carbon::parse($session->last_active)->diffForHumans() }} | View Journey |
| No tracking data yet. | ||||