@extends('layouts.master') @section('title', 'Seguridad - Invitados') @section('content')

Invitados {{ $evento->nombre }} {{ date('d/m/Y',strtotime($evento->fecha)) }}

{{ Html::linkRoute('seguridad.eventos', 'Volver', null, array('class' => 'btn btn-secondary btn-block mt-2')) }}

{{ $evento->nombre }}     {{ count($evento->invitadosConfirmados) }}   |   {{ count($evento->invitadosRecepcionados) }}   |   {{ $evento->entradasCantidadTotal() }}

@if(count($evento->invitados)) @foreach ($evento->invitadosConfirmados as $key => $invitado) @if($invitado->pivot->nota) @else @endif @if(! $invitado->pivot->estado_id) @else @endif @endforeach
ID Nombre Documento Telefono Entrada Notas Ingreso Recibir
{{ sprintf('%06d', $invitado->pivot->id) }} {{ $invitado->name }} {{ $invitado->documento }} {{ $invitado->telefono }} {{ $invitado->pivot->entrada->nombre }}{{$invitado->pivot->nota}}- {{ date('d/m - H:i:s', strtotime($invitado->pivot->fecha_ingreso)) }}
@else

No Existen Registros


@endif
@endsection @section('javascript') @endsection