@extends('cr_blank') @section('content')
{{ $title }}
@if ($evento)
Evento: {{ $evento->nombre }}
Modalidad: {{ $evento->modalidad }}
Tipo del evento: {{ $evento->tipo->nombre }}
@if ($evento->detalle)
Detalle: {{ $evento->detalle }}
@endif
Cantidad en lista: {{ count($data) }}
{{--
Tipo: {{ $categoria->genero=='M'?'MASCULINO':'FEMENINO' }}
--}} @endif @foreach ($data as $item) @endforeach
N. Fecha Evento Nombre Completo Tipo Participante Tipo de Pago
{{ ++$i }} {{ date('d-m-Y', strtotime($item->fecha)) }} {{ $item->evento->nombre }} {{ $item->participante->nombre_completo }} {{ $item->tipo_participante }} {{ $item->tipo_pago }}
@endsection @section('scripts') @endsection