@extends('layouts.admin') @section('content')
| Rank | Username | Total Invitations | Successful | Success Rate | |
|---|---|---|---|---|---|
| #{{ $index + 1 }} | {{ $user['username'] ?? '—' }} | {{ $user['email'] ?? '' }} | {{ $user['total_invitations'] ?? 0 }} | {{ $user['successful_invitations'] ?? 0 }} |
@php
$total = $user['total_invitations'] ?? 0;
$successful = $user['successful_invitations'] ?? 0;
$rate = $total > 0 ? round(($successful / $total) * 100, 1) : 0;
@endphp
|