@extends('layouts/contentNavbarLayout') @section('title', 'Participants - ' . $challenge->title) @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
{{ $challenge->title }}
| Rank | Participant | Steps | Progress | Status | Actions |
|---|---|---|---|---|---|
|
@if($index < 3)
@if($index == 0)
@elseif($index == 1)
@elseif($index == 2)
@endif
@endif
#{{ $index + 1 }}
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
|
{{ number_format($user->pivot->steps) }}
steps
|
Progress
{{ number_format(($user->pivot->steps / $challenge->required_steps) * 100, 1) }}%
|
@if($user->pivot->is_winner) Winner @elseif($user->pivot->steps >= $challenge->required_steps) Goal Reached @elseif($user->pivot->steps > 0) In Progress @else Started @endif |
|
No Participants YetThis challenge doesn't have any participants yet. |
|||||