@extends('layouts.adminpages') @section('content')
 
Volver
Participantes - Actividad [{{ $activity->name }}]
@forelse($participants as $participant) @include('dashboard.activities.participations.partials.modal-delete-participant', ['participant' => $participant]) @empty @endforelse
Nombre Role Correo Tiempo Porcentaje Opciones
{{ $participant->user->fullName }} {{ $participant->user->first_role_name }} {{ $participant->user->email }} {{ $participant->time_to_respond }} {{ number_format($participant->percentage_correct, 2) }}%
No se encontraron resultados.
{{ $participants->appends(request()->query())->links() }}
@endsection @section('scripts') @stop