@extends('layouts/contentNavbarLayout') @section('title', $challenge->title . ' - Completions History') @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
Complete history of all challenge completions by participants
Chronological list of all challenge completions
| Date | Participant | Steps | Frequency | @if($challenge->is_points_prize)Points | @endifPrize Description | Completed |
|---|---|---|---|---|---|---|
|
{{ \Carbon\Carbon::parse($completion->completion_date)->format('M d') }}
{{ \Carbon\Carbon::parse($completion->completion_date)->format('Y') }}
|
@if($completion->user->avatar)
{{ substr($completion->user->name, 0, 1) }}
@endif
{{ $completion->user->name }}
{{ $completion->user->email }}
|
@if($completion->steps) {{ number_format($completion->steps) }} @else - @endif | {{ ucfirst($completion->frequency) }} | @if($challenge->is_points_prize)@if($completion->is_points_prize && $completion->points_prize) +{{ $completion->points_prize }} @else - @endif | @endif@if($completion->prize_description) {{ Str::limit($completion->prize_description, 50) }} @else No description @endif |
{{ \Carbon\Carbon::parse($completion->created_at)->locale('en')->diffForHumans() }}
|
Once participants start completing the challenge, their progress will appear here.
Back to Challenge