Pas de concours
@extends('layouts.admin') @section('title', 'Concours - ' . getRadioUsers()->name) @section('content')
| # | Titre | Fin (Durée) | Questions | Participants | Statut | Action |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ Str::length($unConcours->title) > 20 ? Str::substr($unConcours->title, 0, 20) . '...' : $unConcours->title }} | {{ formattedDate($unConcours->end_at) }} | {{ $unConcours->quizzes->count() }} question(s) | {{ $unConcours->participants->count() }} participant(s) | @switch($unConcours->status) @case('PENDING') En attente @break @case('ACTIVE') En cours @break @case('SUSPENDED') Suspendu @break @default Terminé @endswitch |
Pas de concours