@extends('layouts/contentNavbarLayout') @section('title', 'Challenge Participants') @section('content')
{{ $challenge->title }} • {{ $challenge->company->name }}
Total Participants
Total Steps
Average Steps
Winners
| # | Participant | Steps | Progress | Status | Actions |
|---|---|---|---|---|---|
| @if($index === 0) 🥇 @elseif($index === 1) 🥈 @elseif($index === 2) 🥉 @else {{ $index + 1 }} @endif |
{{ $user->name }}{{ $user->email }} |
{{ number_format($user->pivot->steps) }} |
|
@if($isWinner) Winner @elseif($progressPercentage >= 100) Goal Reached @elseif($progressPercentage >= 50) In Progress @else Started @endif |
@if(!$isWinner && $progressPercentage >= 100)
@endif
|
This challenge doesn't have any participants yet.