@extends('layouts/app') @section('titulo', 'lista de participantes') @section('content') {{-- notificaciones --}}

LISTA DE PARTICIPANTES

ID DNI PARTICIPANTE CURSO CORREO PARTICIPÓ COMO CODIGO CERTIFICADO
@if (session('CORRECTO'))
{{ session('CORRECTO') }}
@endif @if (session('INCORRECTO'))
{{ session('INCORRECTO') }}
@endif @if (session('DUPLICADO'))
{{ session('DUPLICADO') }}
@endif @error('curso')
{{ $message }}
@enderror @error('dni')
{{ $message }}
@enderror @error('nombre')
{{ $message }}
@enderror @error('apellido')
{{ $message }}
@enderror @error('correo')
{{ $message }}
@enderror @error('codigo')
{{ $message }}
@enderror @error('participa')
{{ $message }}
@enderror @error('certificado')
{{ $message }}
@enderror
  Registrar   Descargar Excel
Eliminar Todo
@foreach ($datos as $item) {{-- modal de modificar --}} {{-- modal qr --}} @endforeach
ID DNI PARTICIPANTE CURSO CORREO PARTICIPÓ COMO CODIGO CERTIFICADO
{{ $item->id_participante }} {{ $item->dni }} {{ $item->nombre }} {{ $item->apellido }} {{ $item->curso }} {{ $item->correo }} {{ $item->participo_como }} {{ $item->codigo }} @if ($item->participo_como == 'otro') @if ($item->certificado == '') Sin certificado @else Ver certificado @endif @endif @if ($item->participo_como == 'otro') @endif
@csrf @method('delete') {{-- --}}
{{ $datos->links('pagination::bootstrap-4') }} Mostrando {{ $datos->firstItem() }} - {{ $datos->lastItem() }} de {{ $datos->total() }} resultados
@endsection