{{ $user->name }}
@if($user->role == 'super_admin') Super Admin @elseif($user->role == 'admin') Admin @else User @endif @if($user->banned_at) Banned @else Active @endif
- Email {{ $user->email }}
- Username {{ $user->username }}
- Shortlinks {{ number_format($userStats['total_shortlinks']) }}
- Total Clicks {{ number_format($userStats['total_clicks']) }}
- Joined {{ $user->created_at->format('M d, Y') }}
Additional Information
| User ID: | {{ $user->id }} |
| Phone: | {{ $user->phone }} |
| Google ID: | {{ $user->google_id }} |
| Email Verified: | @if($user->email_verified_at) Yes {{ $user->email_verified_at->format('M d, Y') }} @else No @endif |
| Last Updated: | {{ $user->updated_at->format('M d, Y H:i') }} |
{{ number_format($userStats['total_shortlinks']) }}
Total Shortlinks
{{ number_format($userStats['active_shortlinks']) }}
Active Links
{{ number_format($userStats['total_clicks']) }}
Total Clicks
{{ $userStats['total_clicks'] > 0 ? number_format($userStats['total_clicks'] / max($userStats['total_shortlinks'], 1), 1) : '0' }}
Avg Clicks/Link
Click Activity (Last 12 Months)
Recent Shortlinks
| ID | Original URL | Custom Label | Clicks | Status | Created |
|---|---|---|---|---|---|
| {{ $shortlink->id }} | {{ $shortlink->original }} | {{ $shortlink->custom_label ?: '-' }} | {{ number_format($shortlink->clicks) }} | @if($shortlink->is_active) Active @else Inactive @endif | {{ $shortlink->created_at->format('M d, Y') }} |
No shortlinks found
This user hasn't created any shortlinks yet.