@extends('layouts/contentNavbarLayout') @section('title', 'Challenge Details - ' . $challenge->title) @section('content')
{{ $challenge->description }}
@if($challenge->status === 'upcoming') Upcoming Challenge @elseif($challenge->status === 'active') Active Challenge @else Completed Challenge @endifCongratulations to the winning team!
@if($goalReached === 'first') {{ $challenge->firstDepartment->name }} reached the goal first! @else {{ $challenge->secondDepartment->name }} reached the goal first! @endif
{{ $challenge->prize_description }}
@endif| Rank | Participant | Steps | Distance |
|---|---|---|---|
| {{ $index + 1 }} @if($index === 0) @endif |
{{ substr($participant->name, 0, 1) }}
{{ $participant->name }}
{{ $participant->email }}
|
{{ number_format($participant->pivot->steps) }} | {{ number_format($participant->pivot->distance) }} |
No participants yet
| Rank | Participant | Steps | Distance |
|---|---|---|---|
| {{ $index + 1 }} @if($index === 0) @endif |
{{ substr($participant->name, 0, 1) }}
{{ $participant->name }}
{{ $participant->email }}
|
{{ number_format($participant->pivot->steps) }} | {{ number_format($participant->pivot->distance) }} |
No participants yet