@extends('layouts.state') @section('title', 'User Profile Analytics') @section('content')

User Profile Analytics

Detailed analytics for {{ $user->name ?? 'User' }}

{{ substr($user->name ?? 'U', 0, 1) }}

{{ $user->name ?? 'User Name' }}

{{ $user->email ?? 'No email' }}

{{ $user->role ?? 'Student' }} Joined {{ $user->created_at ? $user->created_at->format('M d, Y') : 'Unknown' }}

{{ $analytics['activity_score'] ?? '0' }}%

Activity Score

{{ $analytics['total_events'] ?? '0' }}

Events Attended

Login Sessions

{{ $analytics['total_logins'] ?? '0' }}

+{{ $analytics['login_growth'] ?? '0' }}% this month
Events Attended

{{ $analytics['total_events'] ?? '0' }}

+{{ $analytics['event_growth'] ?? '0' }}% this month
@endsection